aboutsummaryrefslogblamecommitdiffstats
path: root/bin/color
blob: d96fde3eeb2afc4487e1631cc3b3dfa75f6809b8 (plain) (tree)
1
2
3
4
5
6





                                             
#!/bin/sh
for i in {0..255};do
  if (( i % 12  == 0 )); then echo;fi
  printf "\x1b[38;5;${i}mcolour${i}\x1b[0m\t"
done
echo