Linux命令行——压缩归档

Linux常用的压缩工具为 gzip 软件包
压缩命令为

$ gzip testfile

解压缩命令为

$ gunzip testfile.gz

Linux中打包命令为tar, 查看帮助文档:

$ tar --help
Examples:
  tar -cf archive.tar foo bar  # Create archive.tar from files foo and bar.
  tar -tvf archive.tar         # List all files in archive.tar verbosely.
  tar -xf archive.tar          # Extract all files from archive.tar.

-z, --gzip, --gunzip, --ungzip   filter the archive through gzip
-v, --verbose              verbosely list files processed

实际使用过程中常见的压缩命令如下:

$ tar -zcvf test.tar.gz /test

常用的解压缩命令如下:

$ tar -zxvf test.tar.gz

你可能感兴趣的:(Linux命令行——压缩归档)