dotfiles

<-- duh.
git clone https://hhvn.uk/dotfiles
git clone git://hhvn.uk/dotfiles
Log | Files | Refs | Submodules | LICENSE

colotable (177B)


      1 #!/bin/sh
      2 
      3 o=0
      4 for i in $(seq 0 256)
      5 do
      6 	[ $o -gt 5 ] && printf "\n" && o=0
      7 	o=$(($o+1))
      8 	tput setaf $i
      9 	printf "  %03d  " "$i"
     10 	tput setab $i
     11 	printf "       "
     12 	tput sgr0
     13 done