Skip to content

Hongyu's weblog

Science, Technology, and Beyond

Day: November 18, 2008

Posted on November 18, 2008November 18, 2008

Perl tricks

Put the STDOUT to a variable

open($fh, ‘>-‘);
print $fh, “hello world\n”;

Link a file handle to a string (since Perl 5.8)

open($fh, ‘<‘, \$string);

Archives

November 2008
M T W T F S S
 12
3456789
10111213141516
17181920212223
24252627282930
« Oct   Dec »
Proudly powered by WordPress