下部のおまけのほうがメインかも ■ダウンロード(プロトコル無指定の場合はhttp) $ curl http://domain/ $ curl domain ■ダウンロードファイル保存 $ curl -O http://www.google.com/index.html ■ダウンロードファイル保存(ファイル名指定) $ curl -o index.html www.google.com ■ヘッダーの取得 $ curl -Is www.google.com ■ftpでファイル取得 $ curl ftp://domain:port/full/path/to/file ■ftpsでファイル取得 $ curl --ssl ftp://domain:port/full/path/to/file ■ftpでファイル取得 ログインして取得(:passwordなしだと、実行後パスワードを求められる) $ c