← Back

March 11, 2016

#1654: Universal Install Script explain

Universal Install Script

[In the panel is a shell script which, unusual for xkcd, uses only lower case. At the top the title of the program is inlaid in the frame, which has been broken here.]

Install.sh

#!/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 &