Excerpt from: http://liuzhichao.com/p/681.html
1. I downloaded a yasuo.zip file and want to unzip it:
# Unzip Yasuo.zip
2. I have Abc1.zip,abc2.zip and Abc3.zip in the current directory, and I want to unzip them together:
# unzip abc\? Zip
Note: A character is represented if any number of characters are represented by *.
3. I want to compress a file abc.txt and a directory dir1 into Yasuo.zip:
# zip-r Yasuo.zip abc.txt Dir1
6. I downloaded a compressed file large.zip, want to verify that the compressed file is completely downloaded
# unzip-t Large.zip
7. I have a very large compressed file large.zip, I do not want to decompress, just want to see what is inside it:
# unzip-v Large.zip
8. I use the-v option to find that Music.zip compressed files have many directories and subdirectories, and the subdirectories are actually songs mp3 files, I would like to download these files to the first level directory, rather than a layer of building a directory:
# unzip-j Music.zip
CentOS compression (Zip) and decompression (unzip) commands