Skip to content

Instantly share code, notes, and snippets.

@gmas
Created March 18, 2015 20:58
Show Gist options
  • Save gmas/acec677882e7e1eff65b to your computer and use it in GitHub Desktop.
Save gmas/acec677882e7e1eff65b to your computer and use it in GitHub Desktop.
decompress/compress file on the fly
# 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