curl Warning: Binary output can mess up your terminal. Use "--output -" to tell
微wx笑 2023-04-30【运维日志】 2 0关键字: curl
Warning: Binary output can mess up your terminal. Use "--output -" to tellWarning: curl to output it to your terminal anyway, or consider "--outputWarning: <FIL
Warning: Binary output can mess up your terminal. Use "--output -" to tell
Warning: curl to output it to your terminal anyway, or consider "--output
Warning: <FILE>" to save to a file
当使用 curl 访问一个 url 返回的内容是二进制数据的时候,就会看到上面的警告
但是在 curl 命令的最后添加了 --output out.mp4 参数之后,仍然提示这个警告,是什么原因呢?
原因是 --output 必须跟在 curl <url> 之后,例如:
curl <url> --output out.mp4
本文由 微wx笑 创作,采用 署名-非商业性使用-相同方式共享 4.0 许可协议,转载请附上原文出处链接及本声明。
原文链接:https://www.ivu4e.cn/blog/service/2023-04-30/1881.html