Extract command details. Extract details.
Detailed description of tar compression and decompression commands in Linux
Tar
-C: Create a compressed file
-X: Extract
-T: View content
-R: append an object to the end of the compressed archive object
-U: update files in the original compressed package
These five are independent commands, one of which must be used for compression and decompression. They can be used with other commands, but only one of them can be used. The following parameters are optional when files are compressed or decompressed as needed.
-Z: With the gzip attribute
-J: With the bz2 attribute
-Z: With the compress attribute
-V: displays all processes.
-O: unbind the file to the standard output
The following parameter-f is required
-F: use the file name. Remember, this parameter is the last parameter and can only be followed by the file name.
Tar-cf all.tar *. jpg
This command is to pack all. jpg files into a package named all.tar. -C indicates that a new package is generated.-f specifies the package file name.
Tar-rf all.tar *. gif
This command adds all .gif files to the package of all.tar. -R indicates adding files.
Tar-uf all.tar logo.gif
This command is used to update the logo.gif file in tarbao all.tar.-u indicates that the file is updated.
Tar-tf all.tar
This command is used to list all files in the all.tar package.-t is used to list objects.
Tar-xf all.tar
This command is used to extract all the files in the all.tar package.
Compression
Tar-cvf jpg.tar *. jpg // pack all jpg files in the Directory into tar.jpg
Tar-czf jpg.tar.gz *. jpg // jpg
Tar-cjf jpg.tar.bz2 *. jpg // jpg
Tar-cZf jpg.tar. Z *. jpg // jpg. Z
Rar a jpg.rar *. jpg // rar format compression, You need to download rar for linux
Zip jpg.zip *. jpg // zip format compression, You need to download zip for linux first
Extract
Tar-xvf file.tar // decompress the tar package
Tar-xzvf file.tar.gz // decompress tar.gz
Tar-xjvf file.tar.bz2 // unzip tar.bz2
Tar-xZvf file.tar. Z // extract tar. Z
Unrar e file.rar // extract rar
Unzip file.zip // decompress the zip file
Summary
1. Decompress *. tar with tar-xvf
2. Use gzip-d or gunzip to decompress *. gz
3,.Tar.gz and. Tgz decompress with tar-xzf
4. Use bzip2-d for *. bz2 or use bunzip2 for decompression.
5. Use tar-xjf to decompress * .tar.bz2
6. Use uncompress to decompress *. Z
7. Decompress *. tar. Z with tar-xZf
8. Extract files using unrar e for *. rar
9. Decompress *. zip with unzip