mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
370 B
370 B
zip
Package and compress (archive) files into zip file.
- Package and compress multiple directories and files:
zip -r {{compressed.zip}} {{/path/to/dir1 /path/to/dir2 /path/to/file}}
- Add files to an existing zip file:
zip {{compressed.zip}} {{path/to/file}}
- Remove unwanted files from an existing zip file:
zip -d {{compressed.zip}} "{{foo/*.tmp}}"