in reply to
How do I Gzip a file in perl script
I would also look into the
system()
function which is a bit more secure than using backticks. Something like this should work:
system ("gunzip", "$file");
Zenon Zabinski |
zdog
| zdog7@hotmail.com
Comment on
(zdog ) Re: How do I Gzip a file in perl script
Download
Code
In Section
Seekers of Perl Wisdom