S
Sean Berry
I have the following...
open (DATA, "|/usr/bin/gunzip -c $filename");
while(<DATA>) {
...
}
But this does not work.
How do I read stdout into PERL?
Thanks
open (DATA, "|/usr/bin/gunzip -c $filename");
while(<DATA>) {
...
}
But this does not work.
How do I read stdout into PERL?
Thanks