Skip to content

Instantly share code, notes, and snippets.

@jason-riddle
Created October 21, 2019 01:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jason-riddle/9de703edfb15ffcbefb2302106597cac to your computer and use it in GitHub Desktop.
Save jason-riddle/9de703edfb15ffcbefb2302106597cac to your computer and use it in GitHub Desktop.
Examples for Curl #snippet #complete
# Robust curl command to retry, timeout, and save the output to a file
curl --silent --show-error \
--location --max-redirs 3 \
--retry 3 --retry-connrefused --retry-delay 2 \
--max-time 30 \
"$url"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment