Skip to content

Instantly share code, notes, and snippets.

@jmatsu
Created July 9, 2015 13:55
Show Gist options
  • Save jmatsu/cb5f736f804c7924fe05 to your computer and use it in GitHub Desktop.
Save jmatsu/cb5f736f804c7924fe05 to your computer and use it in GitHub Desktop.
# -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