Last active
August 5, 2016 23:51
-
-
Save neilpa/b5ef0b7aaef1b305aad71369b1feadf2 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 | |
# Universal Install Script | |
# https://xkcd.com/1654/ | |
pip install "$1" & | |
easy_install "$1" & | |
brew install "$1" & | |
npm install "$1" & | |
yum install "$1" & | |
dnf install "$1" & | |
docker run "$1" & | |
pkg install "$1" & | |
apt-get install "$1" & | |
sudo apt-get install "$1" & | |
steamcmd +app_update "$1" validate & | |
git clone https://github.com/"$1"/"$1" & | |
cd "$1";./configure;make;make install & | |
curl "$1" | bash & | |
# Missed stuff | |
gem install "$1" & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment