- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- UNIX/curlコマンド へ行く。
- 1 (2015-04-15 (水) 10:50:58)
- 2 (2015-04-15 (水) 19:59:30)
- 3 (2016-12-07 (水) 16:21:46)
curlコマンド
POSTリクエスト
curl --data 'name=taro&age=12' http://localhost:8001/
curl -F 'name=yamada taro' -F 'age=12' http://localhost:8001/
↓
<form method="post" action="http://localhost:8001/"> <input type="hidden" name="name" value="yamada taro"> <input type="hidden" name="age" value="12"> <input type="submit"> </form>
ファイル送信リクエスト
参考
http://superuser.com/questions/265062/downloading-file-from-ftp-using-curl
参考:ローカルにサーバを起動する
nc -l localhost 8001