Skip to content

Instantly share code, notes, and snippets.

@JavaCS3
Created August 5, 2019 13:44
Show Gist options
  • Save JavaCS3/d579314f03eaaa7ff58aaaf07f225d50 to your computer and use it in GitHub Desktop.
Save JavaCS3/d579314f03eaaa7ff58aaaf07f225d50 to your computer and use it in GitHub Desktop.
color256.sh
for fgbg in 38 48 ; do #Foreground/Background
for color in {0..256} ; do #Colors
#Display the color
echo -en "\e[${fgbg};5;${color}m ${color}\t\e[0m"
#Display 10 colors per lines
if [ $((($color + 1) % 10)) == 0 ] ; then
echo #New line
fi
done
echo #New line
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment