Created
April 29, 2018 19:40
-
-
Save SharkyRawr/16030297e77c36366df53e7ef3e91720 to your computer and use it in GitHub Desktop.
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
| apt install -y pbzip2 pigz pixz | |
| for f in gzip gunzip gzcat; do | |
| ln -sv "`which pigz`" "/usr/local/bin/$f" | |
| done | |
| for f in bzip2 bunzip bzcat; do | |
| ln -sv "`which pbzip2`" "/usr/local/bin/$f" | |
| done | |
| for f in xz xzcat; do | |
| ln -sv "`which pixz`" "/usr/local/bin/$f" | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment