Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/billiegoose/inflate-cli
A CLI utility for inflating streams compressed with `deflate` algorithm
https://github.com/billiegoose/inflate-cli
Last synced: 24 days ago
JSON representation
A CLI utility for inflating streams compressed with `deflate` algorithm
- Host: GitHub
- URL: https://github.com/billiegoose/inflate-cli
- Owner: billiegoose
- License: mit
- Created: 2020-09-27T04:09:29.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2020-09-27T04:15:11.000Z (over 4 years ago)
- Last Synced: 2024-10-06T03:23:51.189Z (3 months ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# inflate-cli
A CLI utility for inflating streams compressed with `deflate` algorithm## Install
```sh
npm i -g inflate-cli
```(Note: the bin is named `inflate` not `inflate-cli`.)
## Use
You can either pipe the file (preferred) or specify the file name as a command line argument.
```sh
cat somefile.Z | inflate
```or
```sh
inflate somefile.Z
```