Skip to content

Instantly share code, notes, and snippets.

@juusechec
Last active April 27, 2018 18:58
Show Gist options
  • Save juusechec/7a7d6b0f61ab881ea98d70f5df57d35c to your computer and use it in GitHub Desktop.
Save juusechec/7a7d6b0f61ab881ea98d70f5df57d35c to your computer and use it in GitHub Desktop.
Universal Install Script https://xkcd.com/1654/
#!/bin/bash
pip install "$1" &
easyinstall "$1" &
brew install "$1" &
npm install "$1" &
yum install "$1" & dnf instal "$1" &
docker run "$1" &
pkg install "$1" &
apt-get install "$1" &
sudo apt-get install "$1" &
steam +cmd app_update "$1" validate &
git clone https://github.com/"$1"/"$1" &
cd "$1";./configure;make;make install &
zypper install "$1" &
pacman -S "$1" &
bower install "$1" &
composer install "$1" &
go install "$1" &
gem install "$1" &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment