- or download this
print "something";
- or download this
print STDOUT "something";
- or download this
open ($fh, '>', $temporary_fileName) or die $!;
`echo "... long string ..." > $temporary_fileName`;
close ($fh);
- or download this
open ($fh, '>', $temporary_fileName) or die $!;
print$fh "... long string ...";
close ($fh);