我想从终端下载文件。 Chrome可以下载文件,而我使用Chrome的cURL提取了用于下载文件的URL(和标头)。
curl 'https://www.url.com/file.zip' -H 'authority: www.url.com' -H 'upgrade-insecure-requests: 1' -H 'user-agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36' -H 'accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8' -H 'accept-encoding: gzip, deflate, br' -H 'accept-language: en-US,en;q=0.9' -H $'cookie: _ga=GA1.2.902526367.1545174559;' --compressed
但是,如果我尝试在命令提示符下使用相同的功能,则它什么都不做。
有什么想法吗?