Skip to content

Instantly share code, notes, and snippets.

@neilpa
Last active August 5, 2016 23:51
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save neilpa/b5ef0b7aaef1b305aad71369b1feadf2 to your computer and use it in GitHub Desktop.
Save neilpa/b5ef0b7aaef1b305aad71369b1feadf2 to your computer and use it in GitHub Desktop.
#!/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