gzip and gunzip to another location


Zipping to another location

gzip -c abc.txt > /usr1/abc.gz

Unzinpping to another location 
 
gunzip -c /user1/abc.gz> /user2/abc



Multiple compressed files can be concatenated. In this case, gunzip will extract all members at once. For example:

 
             gzip -c file1  > foo.gz

             gzip -c file2 >> foo.gz

 
 Then

  gunzip -c foo

 
 is equivalent to

 
 cat file1 file2

 



Post a Comment

And that's all there is to it!

If anyone has any other questions or requests for future How To posts, you can either ask them in the comments or email me. Please don't feel shy at all!

I'm certainly not an expert, but I'll try my hardest to explain what I do know and research what I don't know.

Previous Post Next Post