mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
31 lines
526 B
Markdown
31 lines
526 B
Markdown
# Zip
|
|
|
|
## Table of contents <!-- omit in toc -->
|
|
|
|
1. [TL;DR](#tldr)
|
|
1. [Further readings](#further-readings)
|
|
|
|
## TL;DR
|
|
|
|
```sh
|
|
# recursively compress everything in the current directory to an archive named 'foo.zip'
|
|
zip -r foo .
|
|
|
|
# recursively compress two folders and a file to an archive named 'bar.zip'
|
|
zip -r bar folder1 folder2 file.txt
|
|
|
|
# list all files in the archive 'foo.zip' with info
|
|
unzip -Zl foo.zip
|
|
```
|
|
|
|
## Further readings
|
|
|
|
- [cheat.sh]
|
|
|
|
<!--
|
|
References
|
|
-->
|
|
|
|
<!-- Others -->
|
|
[cheat.sh]: https://cheat.sh/zip
|