Created
January 27, 2017 07:14
-
-
Save laclefyoshi/be8cce731e9b44ab72f7ea939a4ec405 to your computer and use it in GitHub Desktop.
concat multiple gzip
This file contains 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
$ 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