Linux zip
时间: 2023-06-28 15:06:50 浏览: 155
linux.zip
Linux中使用zip命令来压缩文件和文件夹。以下是一些常见的用法:
1. 压缩文件:
```
zip archive.zip file.txt
```
这将压缩file.txt文件并将其存储在archive.zip中。
2. 压缩文件夹:
```
zip -r archive.zip folder
```
这将压缩名为folder的文件夹及其内容,并将其存储在archive.zip中。
3. 添加文件到已有的zip文件:
```
zip archive.zip newfile.txt
```
这将把newfile.txt添加到archive.zip中。
4. 解压缩zip文件:
```
unzip archive.zip
```
这将解压缩archive.zip文件到当前目录中。
5. 查看zip文件内容:
```
unzip -l archive.zip
```
这将列出archive.zip文件中的所有条目。
阅读全文