Linux Packaging command: Tar
First, dozen tar package: tar-zcvf/xx/xx.tar.gz XX
1. First XX: The directory that is compressed to (can be omitted, then the current directory), directory:. /or absolute directories or relative directories, such as:. /or/usr/test or Test/test1
2. Second XX: Compressed file name (xx.tar.gz)
3. Third XX: Compressed files or folders
4. Parameter-ZCVF fast reading memory reading "Chi-Cha Weifang"
Second, unzip the tar package: TAR-ZXVF xx.tar.gz-c/xx
1. First XX: the extracted file name
2. The second XX: After extracting the output directory (can be omitted, then the current directory), directory:. /or absolute directories or relative directories, such as:. /or/usr/test or Test/test1
3. Note that the parameter C should be capitalized
4. Parameter-ZXVF fast reading memory reading "Zhi-laugh Weifang"
Linux Packaging command: Tar