diff options
author | EuAndreh <eu@euandre.org> | 2024-02-14 08:55:09 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-02-14 08:55:09 -0300 |
commit | 5a5b78673f6370c54bcba64aed65549fab532f66 (patch) | |
tree | a84a898cbabd8e4c7d10f868d9b10c544e4b3a3d /bin/inflate | |
parent | chmod -x share/man/en/man1/numbered.1 (diff) | |
download | dotfiles-5a5b78673f6370c54bcba64aed65549fab532f66.tar.gz dotfiles-5a5b78673f6370c54bcba64aed65549fab532f66.tar.xz |
bin/{de,in}flate: Add simple working utilities
Diffstat (limited to 'bin/inflate')
-rwxr-xr-x | bin/inflate | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/inflate b/bin/inflate new file mode 100755 index 0000000..ade1701 --- /dev/null +++ b/bin/inflate @@ -0,0 +1,5 @@ +#!/usr/bin/env node + +const zlib = require("zlib"); + +process.stdin.pipe(zlib.createInflate()).pipe(process.stdout); |