Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
student:zip:creating [2022/07/11 16:39] bernstdhstudent:zip:creating [2022/08/29 11:31] bernstdh
Line 57: Line 57:
  
 |    jar -cvf //archive//.zip //file// [//file//]...     | |    jar -cvf //archive//.zip //file// [//file//]...     |
 +
 +Note that if you use the GUI-based approach, the resulting ''.zip" file will contain OSX-specific files (like ".DS_STORE") and directories (like "__MACOSX") that can cause problems in some situations. You can exclude files when working from the command line using the ''-x'' option. For example:
 +
 +<code>
 +zip -r dir.zip . -x ".*" -x "__MACOSX"
 +</code>
 +
 +will create a "dir.zip" that contains all of the directories below the current directory, but will exclude all files that start with a "." and the "__MACOSX" directory.