mirror of
https://github.com/balkian/dotfiles.git
synced 2024-11-05 13:11:43 +00:00
5 lines
89 B
Bash
5 lines
89 B
Bash
|
#!/usr/bin/env bash
|
||
|
for i in {0..255} ; do
|
||
|
printf "\x1b[38;5;${i}mcolour${i}\n"
|
||
|
done
|