diff --git a/knowledge base/zip.md b/knowledge base/zip.md new file mode 100644 index 0000000..fe175d4 --- /dev/null +++ b/knowledge base/zip.md @@ -0,0 +1,20 @@ +# Zip + +## TL;DR + +```shell +# 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] + +[cheat.sh]: https://cheat.sh/zip