I have written a script which upload a tar file. The next step is to untar it. I have tried:
and
both of which just hang. The tar file is extracted (with the first option) but the rest of the page is never displayed on the browser.
I am using windows and active perl and the tar.exe is one that comes with exceed...
Any ideas?
Thanks in advance
Code:
$com="tar -xf \"$savefile\"";
system("$com");
and
Code:
$com="tar -xf \"$savefile\"";
open (TEST, "$com");
close TEST;
both of which just hang. The tar file is extracted (with the first option) but the rest of the page is never displayed on the browser.
I am using windows and active perl and the tar.exe is one that comes with exceed...
Any ideas?
Thanks in advance