vote up 6 vote down star
1

I would like to color format the text printed to the console using the Perl print command.

In my case the script will only be run under WinXP-DOS Command Line but it would be great if it was OS independent although I would rather tie it to WinXP than have to download a seperate package.

flag

2 Answers

vote up 13 vote down check

For any terminal that supports ANSI escape codes you can use the Term::ANSIColor package available on CPAN.

From the Wikipedia page:

Console windows in Windows versions based on NT (Windows NT 4.0, Windows 2000, Windows XP, Windows Server 2003, Windows Vista and Windows Server 2008) do not natively support ANSI Escape sequences, though some support is possible.

Don't know any more Windows-specific information than that, I'm a POSIX guy. :-)

link|flag
7  
See also search.cpan.org/~jlmorel/Win32-Console-ANSI-1.04/… – Hasturkun Jul 6 at 14:28
1  
I messed around with just using Term::ANSIColor but it was only printing the escape sequences...not properly showing the colors. I downloaded and built the package suggested by Hasturkun (search.cpan.org/~jlmorel/Win32-Console-ANSI-1.04/…) and everything started working. Thanks! – Jesse Jul 6 at 15:23
vote up 4 vote down

Win32::Console - here's an example

use Win32::Console;
my $CONSOLE = Win32::Console->new(STD_OUTPUT_HANDLE);
my $attr = $CONSOLE->Attr(); // Get current console colors
$CONSOLE->Attr($FG_YELLOW | $BG_GREEN); // Yellow text on green

print "This is a test\n";

$CONSOLE->Attr($attr); // Set console colors back to original
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.