Buenas,
Sabéis por qué en linux me funcionan los colores por el terminal y en windows (consola cmd) no, ¿sabéis por qué?
El código que uso es el siguiente. No se puede mostrar colores en el terminal de windows? :S
http://perl.active-venture.com/lib/Term/ANSIColor.html
Código PERL:
Ver originaluse Term::ANSIColor;
print "This text is bold blue.\n"; print "This text is normal.\n"; print colored
("Yellow on magenta.\n", 'yellow on_magenta'); print "This text is normal.\n"; print colored
['yellow on_magenta'], "Yellow on magenta.\n";
use Term
::ANSIColor qw(uncolor
); print uncolor
'01;31', "\n";
use Term
::ANSIColor qw(:constants
); print BOLD
, BLUE
, "This text is in bold blue.\n", RESET
;
use Term
::ANSIColor qw(:constants
); $Term::ANSIColor::AUTORESET = 1;
print BOLD BLUE
"This text is in bold blue.\n"; print "This text is normal.\n";
Muchas gracias de antemano!