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.
Related Blogs
- The Linux Mint Blog » Blog Archive » Linux Mint 6 Felicia reaches …
- jekt » Blog Archive » HOW TO: Change the Temp Database Location in …
- Smalltalk Daily 03/18/10: Using stdin and stdout
- 2010 Bilderberg Meeting Location Exposed! | We Are Change
- Protection for Mac and Linux computers: genuine need or nice to …













Sorry, but the chance that a module named Win32::anything will work on Linux is about 0.001%
You will have to rewrite that portion of code.