Skip to content

Instantly share code, notes, and snippets.

@WattsInABox
Last active February 3, 2024 16:08
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 WattsInABox/60b1f56933de2a5904e8b4204b2bca4c to your computer and use it in GitHub Desktop.
Save WattsInABox/60b1f56933de2a5904e8b4204b2bca4c to your computer and use it in GitHub Desktop.
install GNU Parallel with citation removal on Redhat UBI8
cd /tmp \
&& curl --output parallel-latest.tar.bz2 http://ftp.gnu.org/gnu/parallel/parallel-latest.tar.bz2 \
&& tar xjf parallel-latest.tar.bz2 \
&& cd parallel-2* \
&& ./configure && make \
&& make install \
&& cd /tmp \
&& rm -rf parallel-* \
&& mkdir -p ~/.parallel \
&& touch ~/.parallel/will-cite
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment