Jun 14, 2006 #1 amiak Programmer Dec 17, 2002 41 US Hi, I am looking for something that will print hightlighted text. like print "*"; where * performs a shift-insert and the output is text that was recently highlighted. thanks!
Hi, I am looking for something that will print hightlighted text. like print "*"; where * performs a shift-insert and the output is text that was recently highlighted. thanks!
Jun 14, 2006 #2 KevinADC Technical User Jan 21, 2005 5,070 US is this a perl question? Upvote 0 Downvote
Jun 15, 2006 #3 dmazzini Programmer Jan 20, 2004 480 US sub normal { print "[0m"; } sub bold { return "[1m@_"; } print &normal ("this text in norma letter.\n"); print &bold ("this text in bold letter.\n"); dmazzini GSM System and Telecomm Consultant Upvote 0 Downvote
sub normal { print "[0m"; } sub bold { return "[1m@_"; } print &normal ("this text in norma letter.\n"); print &bold ("this text in bold letter.\n"); dmazzini GSM System and Telecomm Consultant
Jun 16, 2006 Thread starter #4 amiak Programmer Dec 17, 2002 41 US thanks for the responses... I am using freeBSD and X. I think I've found the answer... thanks again Upvote 0 Downvote