in reply to Formatting Help

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";
which will print the line "This text is bold blue" in bold blue of course. :-)