in reply to How do I print characters with underline or bold?

#!/usr/bin/perl -w use strict; use Term::ANSIColor; print color 'bold'; print "This is bold";
see Term::ANSIColor, hope it helps.