https://github.com/kyee-rs/grizzly
🐻 Grizzly - Self-Extractable (SFX) archives creator. Written purely on Rust.
https://github.com/kyee-rs/grizzly
archive compression rust self-extracting-zip sfx-archive zip
Last synced: 3 months ago
JSON representation
🐻 Grizzly - Self-Extractable (SFX) archives creator. Written purely on Rust.
- Host: GitHub
- URL: https://github.com/kyee-rs/grizzly
- Owner: kyee-rs
- License: cc-by-sa-4.0
- Created: 2023-08-28T20:57:09.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-14T18:55:37.000Z (over 1 year ago)
- Last Synced: 2024-10-24T16:50:41.034Z (7 months ago)
- Topics: archive, compression, rust, self-extracting-zip, sfx-archive, zip
- Language: Rust
- Homepage: https://opentf.org/
- Size: 99.6 KB
- Stars: 17
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Grizzly 🐻
Grizzly is a powerful command-line interface (CLI) tool that allows you to create self-extractable (SFX) archives with
ease.## Features
- Compress files and folders into a single executable file
- Easily share and extract archives on any computer without additional software
- Customize the extraction process to fit your specific needs## Installation
To install Grizzly, simply download the latest release from the releases page and add it to your system's PATH.
## Usage
To create an SFX archive, navigate to the directory containing the files and folders you want to compress and run the
following command:```shell
$ grizzly -f file.txt
```> Hint: use multiple `-f` tags to compress multiple files/directories, or use `-f .` to compress the current directory
> recursively.## Help!
```shell
$ grizzly --help
A powerful CLI tool for creating self-extractable (SFX) archives.Usage: grizzly [OPTIONS] --file [COMMAND]
Options:
-f, --file File to compress (use multiple -f flags to compress multiple files).
-h, --help Print help
-n, --name Set the name for binary. [Default: Random ID]
-p, --platform Choose the platform for your binary. [possible values: windows/x86_64, windows/x86, windows/aarch64, linux/x86_64, linux/x86, linux/arm, macos/x86_64, macos/aarch64]
-V, --version Print version
```