Skip to content

Latest commit

 

History

History
18 lines (10 loc) · 411 Bytes

zip-command.md

File metadata and controls

18 lines (10 loc) · 411 Bytes

Zip a directory

zip -r {{ZIP_FILE_NAME}} {{DIRECTORY_PATH}}

  • ZIP_FILE_NAME: Filename for new zipped file
  • DIRECTORY_PATH: Directory relative/absolute path, which needs to be zipped

Example:

zip -r ak-cli.zip ak-cli

Zip Command

Related