in reply to Re: Can Perl copy informations from screen in CMD?
in thread Can Perl copy informations from screen in CMD?

Or even:
use strict; open (my $info, '>', 'info.txt') or die "info.txt: $!"; print $info qx(systeminfo); close($info)
You can read the screen with Win32::Console->ReadChar but you really don't want to.