I have a Perl scrip that works in windows, and I'm trying to get it to work in Linux. It often refers to a variable $STDOUT that is connect to Win32::Console like so-
my $STDOUT = new Win32::Console(STD_OUTPUT_HANDLE);
It does things like find and set the cursor location, change the color of the text and so on. I'd really like to keep these function intact if I can, so I need the commands (or at least direction to information) that can also do these things in Terminal.
my $STDOUT = new Win32::Console(STD_OUTPUT_HANDLE);
It does things like find and set the cursor location, change the color of the text and so on. I'd really like to keep these function intact if I can, so I need the commands (or at least direction to information) that can also do these things in Terminal.