$ uname -r
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh -e | |
for attr in $(seq 0 1); do | |
for fg in $(seq 30 37); do | |
for bg in $(seq 40 47); do | |
printf "\033[$attr;${bg};${fg}m$attr;$fg;$bg\033[m " | |
done | |
echo | |
done | |
done |