Advertisement
widhisec

[Bash] warna

Dec 30th, 2018
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. #!/bin/bash
  2. BLACK=$(tput setaf 0)
  3. RED=$(tput setaf 1)
  4. GREEN=$(tput setaf 2)
  5. YELLOW=$(tput setaf 3)
  6. LIME_YELLOW=$(tput setaf 190)
  7. POWDER_BLUE=$(tput setaf 153)
  8. BLUE=$(tput setaf 4)
  9. MAGENTA=$(tput setaf 5)
  10. CYAN=$(tput setaf 6)
  11. WHITE=$(tput setaf 7)
  12. BRIGHT=$(tput bold)
  13. NORMAL=$(tput sgr0)
  14. BLINK=$(tput blink)
  15. REVERSE=$(tput smso)
  16. UNDERLINE=$(tput smul)
  17. echo "${RED}this is red ${NORMAL}this is normal"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement