Add 256-colors.sh
authorColin P. McCabe <cmccabe@apache.org>
Wed, 5 Feb 2025 00:37:07 +0000 (16:37 -0800)
committerColin P. McCabe <cmccabe@apache.org>
Wed, 5 Feb 2025 00:37:07 +0000 (16:37 -0800)
256-colors.sh [new file with mode: 0755]

diff --git a/256-colors.sh b/256-colors.sh
new file mode 100755 (executable)
index 0000000..f4db056
--- /dev/null
@@ -0,0 +1,5 @@
+#!/usr/bin/env bash
+
+for i in {0..255} ; do
+    printf "\x1b[38;5;%smcolor$i%s\n" $i
+done