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.
我正在使用 curl(webhdfs) 读取驻留在 HDFS 上的文件,但问题是数据我也正在获取 HTTP 标头,我如何才能仅获取没有标头的文件数据?
我正在使用以下命令。如果我要删除“i”选项,则不会给出输出
curl i -L --negotiate -u: -X GET "http://hostname:port/webhdfs/v1/user/TRL.TXT?op=OPEN"
请建议
看起来您的问题中有错字(我认为i应该是-i)。如果您使用-i选项 for curl,它也会转储标题。要获取没有标题的文件,请不要使用-i选项
i
-i
curl
要获取带有标题的文件:
curl -i -L --negotiate -u: -X GET "http://myserver.example.com/myweb/a.html"
要获取没有标题的文件:
curl -L --negotiate -u: -X GET "http://myserver.example.com/myweb/a.html"