Created
July 9, 2015 13:55
-
-
Save jmatsu/cb5f736f804c7924fe05 to your computer and use it in GitHub Desktop.
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
# -q stops to output error and temporal logs anywhere, -O be like '>' and -O - tells to output to stdout | |
wget -q -O - ${URL} | sh - | |
# -s doesn't output error and temporal logs anywhere, -L allows to track redirect transitions. | |
curl -sL ${URL} | sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment