-
Notifications
You must be signed in to change notification settings - Fork 127
/
tar-zip-gzip-bzip2-xz.md
71 lines (38 loc) · 1.67 KB
/
tar-zip-gzip-bzip2-xz.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#### tar 打包压缩命令
```
tar -cf php.tar php-7.2.6 #打包目录不压缩
tar -xf php.tar #解压目录
tar -czvf filename.tar.gz test #打包 test 目录并使用 gzip 压缩并显示文件信息
tar -xzvf filename.tar.gz #解压 gzip 文件并输出文件信息
tar -cjvf filename.tar.bz2 test #打包 test 目录并使用 gzip2 压缩并显示文件信息
tar -xjvf filename.tar.bz2 #解压使用 gzip2 压缩并显示文件信息
```
补充:`-v` 为显示信息
#### zip 压缩命令,文件后缀.zip
```
zip html.zip ./html #压缩当前目录下 html 目录或文件
unzip html.zip #解压在当前目录或文件
zip -qr html.zip ./html #将当前 html 目录递归压缩保存文件名为 html.zip
unzip html.zip #解压在当前目录
unzip -o html.zip -d /usr/local/ #解压 html.zip 文件到 /usr/local/ 下
zip -qr html.zip ./html #将当前html目录递归压缩为 html.zip
zip -r test_python.zip test_python -x "/test_python/index.py" #压缩目录,排除指定文件
zip -r test_python.zip test_python -x "/test_python/venv/*" -x "/test_python/lib/__pycache__/*" #压缩目录,排除多个指定目录
```
#### gzip 压缩命令,文件后缀.gz
```
gzip index.php #压缩 index.php 文件,文件名为 index.php.gz ,不会保留原文件
gunzip index.php.gz #解压文件
gzip -d index.php.gz #解压文件
```
#### bzip2 压缩命令,文件后缀.bz2
```
bzip2 index.php #压缩 index.php 文件,文件名为 index.php.bz2 ,不会保留原文件
bunzip2 index.php.bz2 #解压文件
bzip2 -d index.php.bz2 #解压文件
```
#### xz 压缩命令,文件后缀.xz
```
xz -z index.php #压缩文件
xz -d index.php.xz #解压文件
```