What do you mean by "appear in bold or capitalize"? To turn a string $foo into uppercase, just use $foo = uc $foo; To print in different color or something similar in the Terminal use
use Term::ANSIColor;
print color 'bold blue';
print "This text is bold blue.\n";