in reply to how to get value of print command
Maybe this is what you want:
#!/usr/bin/perl use strict; use warnings; close STDOUT; open( STDOUT, '>', \( my $output ) ) or die "Can't open in-memory file: $!"; print "Hello world!\n"; # prints to $output print STDERR 'STDOUT: ' . $output;
Output:
STDOUT: Hello world!
|
|---|