Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```