Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
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
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 という名前の新しいファイルが作成され、出力がそのファイルに保存されます。