Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/bradcypert/ezzip
- Owner: bradcypert
- License: apache-2.0
- Created: 2021-11-18T04:18:09.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-30T18:37:37.000Z (9 months ago)
- Last Synced: 2024-06-20T09:17:55.752Z (7 months ago)
- Topics: cli, encryption, hacktoberfest, zip
- Language: Go
- Homepage:
- Size: 2.28 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```