|
Posted by Reinhard Pagitsch on November 17, 2005, 1:20 pm
Please log in for more thread options
Hi,
Peter Wilson wrote:
>
>>Peter Wilson wrote:
>>
>>>Can anyone help me? I can't work out how to uncompress .Z files on a
>>>win32 machine using perl.
>>>
>>>Thanks in advance
>>>
>>>Peter
>>
>>http://unxutils.sourceforge.net/ there is a gunzip.exe included which do
>>the work.
>>
>>regards,
>>Reinhard
>
>
> Hi
>
> Many thanks but can i do it within perl? The Compress::Zlib does not support
> the unix compress format.
Only if you want to use system() or backticks.
Like
system("gunzip.exe", "file.Z");
or
$ret = `gunzip.exe file.Z`;
>
> Best regards
>
> Peter
>
>
--
regards,
Reinhard
|