jiang at hbar.rice.edu (Jun Jiang) writes: >I am trying to write a shell script which should be able to print >something in highlighted text. Does anyone out there have any idea >how to do it? Thanks a lot. If you have terminfo this should work: % bold=`tput bold` % normal=`tput sgr0` % echo $bold Some text $normal