commit 874894520bf179e7f3a41ff6aeea3f67fa27c177 parent fe0b89f1ffac6910d7722cd9398781612d6bb890 Author: tongong <tongong@gmx.net> Date: Fri, 29 Oct 2021 12:44:52 +0200 added simple color testing script Diffstat:
A | scripts/colors | | | 1 | + |
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/scripts/colors b/scripts/colors @@ -0,0 +1 @@ +for i in {0..255}; do printf '\e[48;5;%dm%3d ' $i $i; (((i+3) % 18)) || printf '\e[0m\n'; done; printf '\x1b[0m\n'