-
Notifications
You must be signed in to change notification settings - Fork 7
Home
pfeerick edited this page May 26, 2017
·
2 revisions
Navigate to the script, click on the Raw button and copy the URL. Then, depending on if you have git or curl installed, and if you need root, use one of the following templates to download and run the script.
wget, root privileges not needed:
wget -q -O - RAW-URL-OF-SCRIPT | /bin/bash
wget, root privileges needed:
wget -q -O - RAW-URL-OF-SCRIPT | sudo /bin/bash
curl, root privileges not needed:
curl -Ls RAW-URL-OF-SCRIPT | /bin/bash
curl, root privileges needed:
curl -Ls RAW-URL-OF-SCRIPT | sudo /bin/bash