home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / utils / disk-man / linux-fl.000 / linux-fl / linux-floppies / building-blocks / col.simple.sh next >
Encoding:
Linux/UNIX/POSIX Shell Script  |  1996-04-05  |  337 b   |  12 lines

  1. #!/bin/sh
  2.  
  3.  
  4.  
  5. echo -e '\033[37;44m' white \(normal\) on blue '\033[0m' should be reset
  6. echo -e '\033[1;6m\033[36;44m' bright cyan on blue '\033[0m' should be reset
  7. echo -e '\033[1;6m\033[31;40m' bright red on black '\033[0m' should be reset
  8.  
  9. COLOR="\033[37;44m white (normal) on blue \033[0m should be reset"
  10. echo -e $COLOR  + some more
  11.  
  12.