this script was working fine until today, but all of the sudden, it doesn't work anymore 
basically i have a command that outputs a bunch of lines, and i want the perl script to grab this output and display it to the browser window (with some work done on the strings in between). so i have:
open(BLAH, "/directories/command arguments |") || die "can't fork: $!";
while($temp = <BLAH>){
print $temp;
}
do you guys see anything wrong?
thanks!
basically i have a command that outputs a bunch of lines, and i want the perl script to grab this output and display it to the browser window (with some work done on the strings in between). so i have:
open(BLAH, "/directories/command arguments |") || die "can't fork: $!";
while($temp = <BLAH>){
print $temp;
}
do you guys see anything wrong?
thanks!