diff options
author | Ben Sima <ben@bsima.me> | 2019-12-01 16:55:58 -0800 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2019-12-01 16:55:58 -0800 |
commit | 13dbfd2a0fdc89d3173b45be4bdb78a49ef244a1 (patch) | |
tree | 15fa4439237fc5b6b63108e2ddca0762b43d63e3 /colors.sh | |
parent | f36231b5a12448c8212d60b8fa4f72ec1979f7ec (diff) |
add colors.sh
Diffstat (limited to 'colors.sh')
-rwxr-xr-x | colors.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/colors.sh b/colors.sh new file mode 100755 index 0000000..68288cc --- /dev/null +++ b/colors.sh @@ -0,0 +1,4 @@ +#!/usr/bin/env bash +for i in {0..255} ; do + printf "\x1b[38;5;${i}mcolour${i}\n" +done |