Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/daisuke-t-jp/lzfse-cli
LZFSE compression CLI. The tool compress / decompress a single file and directory.
https://github.com/daisuke-t-jp/lzfse-cli
apple-archive cli lzfse macos
Last synced: 5 days ago
JSON representation
LZFSE compression CLI. The tool compress / decompress a single file and directory.
- Host: GitHub
- URL: https://github.com/daisuke-t-jp/lzfse-cli
- Owner: daisuke-t-jp
- License: apache-2.0
- Created: 2020-12-23T12:22:05.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-23T15:18:34.000Z (about 4 years ago)
- Last Synced: 2024-11-07T21:43:37.459Z (about 2 months ago)
- Topics: apple-archive, cli, lzfse, macos
- Language: Swift
- Homepage:
- Size: 170 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lzfse-cli
LZFSE compression CLI.
The tool compress / decompress a single file and directory.## Encode
Encode file.
```sh
$ ./lzfse-cli --encode -i alice29.txt
````alice29.txt.lzfse` is output.
Encode direcotry.
```sh
$ ./lzfse-cli --encode -i dir
````dir.aar` is output.
## Decode
Decode file.
```sh
$ ./lzfse-cli --decode -i alice29.txt.lzfse
````alice29.txt` is output.
Decode direcotry.
```sh
$ ./lzfse-cli --decode -i dir.aar
````dir` is output.