Advertisement
metalx1000

Shell colors

Jun 18th, 2015
828
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.18 KB | None | 0 0
  1. #shell foreground colors
  2. for i in `seq 30 37`;do echo -e "\033[${i}mForeground - ${i}";done
  3.  
  4. #shell background colors
  5. for i in `seq 40 49`;do echo -e "\033[${i}mBackground - ${i}";done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement