Raoul Behrend wrote: > I would really appreciate the presence of a -k option, like in bzip2, which > keeps the original files while making the (de)compression ? Is it possible ?
Do any of the following do what you want? gzip -dc file1 > file2 gunzip -c file1 > file2 gzip -d < file1.gz > file2 gunzip < file1.gz > file2 Bob