Skip to content

Instantly share code, notes, and snippets.

@fikovnik
Last active May 31, 2018 10:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fikovnik/cf01cc79ee9aa4bd4df5bf98147417b1 to your computer and use it in GitHub Desktop.
Save fikovnik/cf01cc79ee9aa4bd4df5bf98147417b1 to your computer and use it in GitHub Desktop.
Install latest GNU parallel
#!/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