Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 323 Bytes

create-zip-with-cli.md

File metadata and controls

12 lines (8 loc) · 323 Bytes

How to create a Zip archive with CLI

In order to create a Zip archive with 7z, you can use the following CLI command:

7z a -r lambdaFunc.zip .

This command creates lambdaFunc.zip, and adds the content of the directory where the command is executed.

References: