Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bradcypert/ezzip

Simple, easy zip/unzip cli with optional AES256 encryption
https://github.com/bradcypert/ezzip

cli encryption hacktoberfest zip

Last synced: 5 days ago
JSON representation

Simple, easy zip/unzip cli with optional AES256 encryption

Awesome Lists containing this project

README

        

# ezzip
Simple, easy zip/unzip cli with optional AES256 encryption

## Installation
### Homebrew
Coming soon.

### For Go Devs
```
go install github.com/bradcypert/ezzip
```

## Usage

### Zip a directory
```
ezzip my_dir
```

### Unzip a directory

```
ezzip my_dir.zip
```

### Optional encryption
```
ezzip my_dir --encrypt
...
use key: abc123 to decrypt
```

### Unzip and Decrypt
```
ezzip my_dir.zip --key=abc123
```