perl 改变字体颜色的脚本,有windows与linux两种版本,感兴趣的朋友可以参考下。
一、wiindows
#!/usr/bin/perl -w
use Win32::Console::ANSI;
use Term::ANSIColor;
print color 'bold green';
print "Hello World!n";
print color 'reset';
#------------------------------------------------
print color 'bold green'; #设定颜色为bold green.
print "Hello World!n"; #This line is green.
print color 'reset'; # 恢复为默认。
#------------------------------------------------
二、Linux
1>
2>