Leo's dev blog

Macos command to zip files and directories into a single file.

Published on
Published on
/1 mins read/---

MacOS has a built-in command to zip files and directories into a single file.

zip -r my-archive.zip <list of files or directories, separated by spaces>

For example, to zip a directory called my-directory and a file called my-file.txt, you can use the following command:

zip -r my-archive.zip my-directory my-file.txt

Happy zipping!