This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #To zip a folder | |
| zip -9 -r <zip file> <folder name> | |
| #To zip a single file: | |
| zip -9 <zip file> <filename> | |
| #Use "-9" for best compression. The compressed file works fine with Windows XP compression tool. |
OlderNewer