# This so one can use \e ourselfes... on both Linux and Windows! Else # the Win32::Console::ANSI have its on functions for outputting in color! if ($^O eq "MSWin32") { eval { require Win32::Console::ANSI; }; } elsif ($^O eq "Linux") { eval { require Term::ANSIColor; }; } use Term::ANSIScreen qw/:color :cursor :screen :keyboard/; ...