標準出力に色を付ける Perl ライブラリ Term::ANSIColor

  http://search.cpan.org/~rra/ANSIColor-1.10/ANSIColor.pm

  なるほど,世の中には便利なライブラリがあるもんだ.

#!/usr/bin/env perl

use strict;
use warnings;
use Term::ANSIColor qw(:constants);

$Term::ANSIColor::AUTORESET = 1;

print BOLD RED   "RED\n";
print BOLD GREEN "GREEN\n";
print BOLD BLUE  "BLUE\n";


- via: memo.xight.org
  http://memo.xight.org/2006-01-04-6

- ref.:
  [2006-01-07-5] 標準出力に色を付ける Perl ライブラリ Term::ANSIColor
  [2006-01-09-2] 標準出力に色を付ける PHP ライブラリ PEAR::Console_Color