Created
March 18, 2015 20:58
-
-
Save gmas/acec677882e7e1eff65b to your computer and use it in GitHub Desktop.
decompress/compress file on the fly
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# unzip -p outputs uncompressed data to pipe(stdout) | |
# gzip -c outputs compressed data to stdout | |
unzip -p original.sql.zip | gzip -c > test.sql.gz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment