Created
April 18, 2016 21:15
-
-
Save jpswade/b5907dbb7210812d941040b3ebfbc504 to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
pip install "$1" 2>/dev/null | |
easy_install "$1" 2>/dev/null | |
brew install "$1" 2>/dev/null | |
npm install "$1" 2>/dev/null | |
yum install "$1" 2>/dev/null | |
dnf install "$1" 2>/dev/null | |
docker run "$1" 2>/dev/null | |
pkg install "$1" 2>/dev/null | |
apt-get install "$1" 2>/dev/null | |
steamcmd +app_update "$1" validate 2>/dev/null | |
#git clone https://github.com/"$1"/"$1" $1 2>/dev/null | |
[ -d "$1" ] && bash -c 'cd "$1" ./configure; make; make install 2>/dev/null' | |
curl "$1" | bash 2>/dev/null | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment