Skip to content

Instantly share code, notes, and snippets.

@cympfh
Created February 1, 2018 06:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cympfh/b1abcde9ff1904889cb59fc8fc77be57 to your computer and use it in GitHub Desktop.
Save cympfh/b1abcde9ff1904889cb59fc8fc77be57 to your computer and use it in GitHub Desktop.
#!/bin/bash
for i in $(seq 0 15); do
for j in $(seq 0 15); do
C=$(( i * 16 + j ))
printf "\e[48;5;${C}m %03x " "${C}"
done
printf "\e[0m\n" # reset & newline
done
@cympfh
Copy link
Author

cympfh commented Feb 1, 2018

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment