Jun 14, 2006 #1 amiak Programmer Joined Dec 17, 2002 Messages 41 Location 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 Joined Jan 21, 2005 Messages 5,070 Location US is this a perl question? Upvote 0 Downvote
Jun 15, 2006 #3 dmazzini Programmer Joined Jan 20, 2004 Messages 480 Location 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 Joined Dec 17, 2002 Messages 41 Location US thanks for the responses... I am using freeBSD and X. I think I've found the answer... thanks again Upvote 0 Downvote