notes/Ubuntu/tar.md

16 lines
240 B
Markdown
Raw Normal View History

2023-09-11 18:18:20 +08:00
# Ubuntu Docker 安装及使用
#### 压缩
* 将一个文件夹压缩成 tar 格式
```
tar -czvf example.tar.gz example_folder/
```
#### 解压
* 将一个文件夹压缩成 tar 格式
```
tar -xzvf example.tar.gz example_folder/
```