1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#!/bin/bash cyan="\E[1;36m\E[1m" normal="\E[m" blue="\E[34m\E[1m" violet="\E[35m\E[1m" red="\E[31m\E[1m" yellow="\E[33m\E[1m" green="\E[37m\E[32m\E[1m" text="\E[1;37m\E[1m" echo -e $cyan"Color cyan" echo -e $blue"Color blue" echo -e $violet"Color violet" echo -e $red"Color red" echo -e $yellow"Color yellow" echo -e $green"Color green" echo -e $text"Color text" echo -e $normal"Color normal" exit |