http://www.perlmonks.org?node_id=84119


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