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: 10 months 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 (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-03-30T18:37:37.000Z (about 2 years ago)
- Last Synced: 2025-05-24T22:35:31.570Z (about 1 year ago)
- Topics: cli, encryption, hacktoberfest, zip
- Language: Go
- Homepage:
- Size: 2.28 MB
- Stars: 2
- Watchers: 2
- 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
```