4

I have a URL as following

www.domain.com/file.asp?File=peoples.csv

This URL force downloads the file when hit in browser but i want to download this file on my local path using CURL.

Is there any way, thanks for help

4

3 に答える 3

3

curl URL >file_path

または u フラグ -o (小文字の o) または -O (大文字の o) を使用できます。

curl -o URL ファイルパス

上記のコマンドは、出力を上記のパスに保存します

curl -O URL

上記のコマンドは、URL からファイル名を取得し、その名前で結果を保存します。

例:

curl -O www.xyz.com/search/clothes.html

clothes.html という名前の新しいファイルが作成され、出力がそのファイルに保存されます。

于 2016-07-12T06:18:06.040 に答える