Skip to content
pfeerick edited this page May 26, 2017 · 2 revisions

Tips on how to access or use scripts quickly

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

Clone this wiki locally