Skip to content

Instantly share code, notes, and snippets.

@sillage
Created April 25, 2015 18:13
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 sillage/492efe63c553fababa7d to your computer and use it in GitHub Desktop.
Save sillage/492efe63c553fababa7d to your computer and use it in GitHub Desktop.
curl multiple files with cookies
# "#1" and "#2"are like sed groups
curl url{foo,bar}_[1-42] --output "#1_#2.jpg" --cookie "NAME1=VALUE1;NAME2=VALUE2"
# or
curl url{foo,bar}_[1-42] -o "#1_#2.jpg" -b "NAME1=VALUE1;NAME2=VALUE2"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment