Last active
April 27, 2018 18:58
-
-
Save juusechec/7a7d6b0f61ab881ea98d70f5df57d35c to your computer and use it in GitHub Desktop.
Universal Install Script https://xkcd.com/1654/
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 | |
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