Skip to content

Instantly share code, notes, and snippets.

@JNRowe
Created September 30, 2009 11:19
Show Gist options
  • Save JNRowe/198010 to your computer and use it in GitHub Desktop.
Save JNRowe/198010 to your computer and use it in GitHub Desktop.
for i in {0..15}
do
for j in {0..15}
do
col=$((i*16+j))
printf "\e[38;5;%im %03i" $col $col
done
printf "\n"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment