summaryrefslogtreecommitdiff
path: root/bin/colortable.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/colortable.sh')
-rwxr-xr-xbin/colortable.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/bin/colortable.sh b/bin/colortable.sh
deleted file mode 100755
index 66ebcc8..0000000
--- a/bin/colortable.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-
-for fgbg in 38 48 #Foreground/Background
-do
- for color in {0..255} #Colors
- do
- #Display the color
- echo -en "\e[${fgbg};5;${color}m ${color}\t\e[0m"
- #Display 10 colors per lines
- if [ $((($color + 1) % 10)) == 0 ] ; then
- echo -en '\n'
- fi
- done
- echo -en '\n'
-done