Skip to content

Instantly share code, notes, and snippets.

@horitaku1124
Last active August 29, 2015 13:57
Show Gist options
  • Select an option

  • Save horitaku1124/9708663 to your computer and use it in GitHub Desktop.

Select an option

Save horitaku1124/9708663 to your computer and use it in GitHub Desktop.
curlのオプションの指定の仕方

Cookieを保存

$ curl -c cookie URL

Cookieを送信

$ curl -b cookie URL

Postで送信

$ curl -d name=abcd cookie URL

何も出力しない

$ curl -s cookie URL

ファイルに出力

$ curl -o file.html cookie URL

参考 http://sitearo.com/cocoa/0800_internet/curl/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment