Created
March 24, 2017 11:28
-
-
Save mkubenka/434422ca63e4fc647d6bce579e8c20f8 to your computer and use it in GitHub Desktop.
Install GNU Parallel on CentOS 6
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/bash | |
# Install GNU parallel on CentOS 6. | |
# http://software.opensuse.org//download.html?project=home%3Atange&package=parallel | |
cd /etc/yum.repos.d/ | |
wget http://download.opensuse.org/repositories/home:tange/CentOS_CentOS-6/home:tange.repo | |
yum install parallel | |
# Alternative: | |
# yum install http://download.opensuse.org/repositories/home:/tange/CentOS_CentOS-6/noarch/parallel-20170322-1.1.noarch.rpm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment