Advertisement
Oceans11

Color codes, to add in your .bashrc

Sep 19th, 2013
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.34 KB | None | 0 0
  1. # Define some colors first:
  2. # 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
  3. export Black="\033[0;30m"
  4. export Red="\033[0;31m"
  5. export Green="\033[0;32m"
  6. export Yellow="\033[1;33m"
  7. export Blue="\033[1;34m"
  8. export Magenta="\033[1;35m"
  9. export Cyan="\033[1;36m"
  10. export White="\033[1;37m"
  11. export Nc="\033[0m" # No Color
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement