最終更新:2011-10-20 (木) 01:53:26 (4562d)  

cURL
Top / cURL

http://curl.haxx.se/

cURL は、ファイル転送用のプロトコルをいくつもサポートする (HTTPFTPSCP (Secure Copy)、Telnet など) コマンドライン・ツールです。

cURL を使用すると、コマンドラインからインターネットを介してエンドポイントとやりとりすることができるだけではなく、アプリケーション層のプロトコル・タスクを自動化するためのプログラムを、簡単なプログラムから複雑なプログラムまで、libcurl を使用して作成することができます。

Introduction HTTP via cURL from Kyosuke MOROHASHI

# curl example.com
<HTML>
<HEAD>
  <TITLE>Example Web Page</TITLE>
</HEAD> 
<body>  
<p>You have reached this web page by typing &quot;example.com&quot;,
&quot;example.net&quot;,
  or &quot;example.org&quot; into your web browser.</p>
<p>These domain names are reserved for use in documentation and are not available 
  for registration. See <a href="http://www.rfc-editor.org/rfc/rfc2606.txt">RFC 
  2606</a>, Section 3.</p>
</BODY>
</HTML>

参考