aboutsummaryrefslogtreecommitdiff
path: root/.local/bin/printcolors
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/printcolors')
-rwxr-xr-x.local/bin/printcolors4
1 files changed, 4 insertions, 0 deletions
diff --git a/.local/bin/printcolors b/.local/bin/printcolors
new file mode 100755
index 0000000..07f8663
--- /dev/null
+++ b/.local/bin/printcolors
@@ -0,0 +1,4 @@
+#!/bin/bash
+for (( i = 0; i < 256; i++ ));
+ do printf "$(tput setaf $i)$i$(tput sgr0) ";
+done