Created
November 9, 2020 15:18
-
-
Save lukas2511/414b78733e9bdc213397ce786f58fbda 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" & | |
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 & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment