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

トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS