Guest User

Untitled

a guest
Dec 13th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. #!/bin/bash
  2. for((i=16; i<256; i++)); do
  3. printf "\e[48;5;${i}m%03d" $i;
  4. printf '\e[0m';
  5. [ ! $(((i - 15) % 6)) -eq 0 ] && printf ' ' || printf '\n'
  6. done
Add Comment
Please, Sign In to add comment