Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

Hi I am actually doing a script to unzip .gz files .The script is given below

use IO::Uncompress::Gunzip qw(gunzip $GunzipError); $input="file.dat.gz"; $output="file.dat"; if (-e $input) { gunzip $input => $output or die "gunzip failed: $GunzipError for $output\n"; }

This will work if the input and code are in same location.My requirement is my script should be in "C" drive and input should be in D drive.Can anyone help ?

Replies are listed 'Best First'.
Re: Redirecting location in perl
by pmqs (Friar) on Jan 10, 2013 at 13:42 UTC
    Have you tried including the path in the gunzip command, like this?
    gunzip "c:/somepath/$input" => "d:/anotherpath/$output"
Re: Redirecting location in perl
by LanX (Saint) on Jan 10, 2013 at 07:23 UTC