in reply to Re^2: removing the need for tmp files from script
in thread removing the need for tmp files from script
use strict; use warnings; my $forbpjoutput = q(); open my $bpfh1, '<', \$forbpjoutput or die $!; ... # Exactly as in your post.
As Cristoforo pointed out, you probably did not intend to input from a null file. I cannot guess what you really did intend to do.
|
|---|