Last active
May 31, 2018 10:46
-
-
Save fikovnik/cf01cc79ee9aa4bd4df5bf98147417b1 to your computer and use it in GitHub Desktop.
Install latest GNU parallel
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
#!/bin/sh | |
wget http://ftp.gnu.org/gnu/parallel/parallel-latest.tar.bz2 && \ | |
mkdir parallel && \ | |
tar xfvj parallel-latest.tar.bz2 -C parallel --strip 1 && \ | |
cd parallel && \ | |
./configure --prefix=/usr/local && \ | |
sudo make install && \ | |
cd .. && \ | |
rm -fr parallel && \ | |
rm -f parallel-latest.tar.bz2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment