in reply to changing output look
Sure! You can use Term::ANSIColor, which will allow you to output text in bold, color, what-have-you, for a terminal that supports those features.
Here's a nifty example:
Hope that helped,#!/usr/bin/perl use strict; use warnings; use Term::ANSIColor qw(:constants); print BOLD,BLUE,"This",RESET," is bold and blue.\n",RESET; print "But ",RED,"this",RESET," is simply red.\n",RESET;
|
|---|