Skip to content

Instantly share code, notes, and snippets.

@laclefyoshi
Created January 27, 2017 07:14
Show Gist options
  • Save laclefyoshi/be8cce731e9b44ab72f7ea939a4ec405 to your computer and use it in GitHub Desktop.
Save laclefyoshi/be8cce731e9b44ab72f7ea939a4ec405 to your computer and use it in GitHub Desktop.
concat multiple gzip
$ cat <<EOF > 123.txt
> 1
> 2
> 3
> EOF
$ gzip 123.txt
$ cat 123.txt.gz 123.txt.gz > 123123.txt.gz
$ gunzip -c 123123.txt.gz
1
2
3
1
2
3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment