in reply to How to use Term::ANSIColor module?.

cmd.exe does not support ANSI escape sequences.

Loading ansi.sys will not make cmd.exe support them, only command.com--the old, 16-bit, totally braindead (as opposed to only half braindead) command line processoer.

However, CPAN does have a module that will allow you to use ansi escape sequences to control the cmd.exe consol session colour attributes: Win32::Console::ANSI. If you load it before you load Term::ANSIColor, you will get (mostly) the effect you require. Try this:

#! perl -slw use strict; use Win32::Console::ANSI; use Term::ANSIColor qw(:constants); print BLACK, ON_WHITE, "black on white\n"; print WHITE, ON_BLACK, "white on black\n"; print GREEN, ON_CYAN, BLINK, "garish!\n"; print RESET;

One caveat. It makes the assumption that the default colors (RESET) are white on black. If you use black on white by default as I do, it is annoying for it to reset these to white on black. It should query the current settings on start up and reset to those.


Examine what is said, not who speaks.
Silence betokens consent.
Love the truth but pardon error.

Replies are listed 'Best First'.
Re^2: How to use Term::ANSIColor module?.
by perlsen (Chaplain) on Feb 10, 2005 at 08:59 UTC

    Thanks, BrowserUk and all.
    Now the code is working fine.

Re^2: How to use Term::ANSIColor module?.
by Anonymous Monk on Apr 05, 2012 at 07:45 UTC
    other than Win32::Console::ANSI, anywhere to execute Perl script with colour in Windows?

      Yes. You could use Win32::Console directly.

      At a pinch, you could even do

      perl -E"say 'hi'; system 'color fc'; <STDIN>; say 'bye'; system 'color + 79'; <STDIN>; say 'gone'"

      With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
      Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
      "Science is about questioning the status quo. Questioning authority".
      In the absence of evidence, opinion is indistinguishable from prejudice.

      The start of some sanity?