Compressing a folder:
Note: With the -X option, you are compressing without the invisible files such as “_MACOSX” or “._Filename”
1 |
zip -r archive_name.zip folder_to_compress |
1 |
zip -r -X archive_name.zip folder_to_compress |
Note: With the -X option, you are compressing without the invisible files such as “_MACOSX” or “._Filename”
Extracting an archive:
1 |
unzip archive_name.zip |