Last active
February 3, 2024 16:08
-
-
Save WattsInABox/60b1f56933de2a5904e8b4204b2bca4c to your computer and use it in GitHub Desktop.
install GNU Parallel with citation removal on Redhat UBI8
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
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