Warning: Binary output can mess up your terminal. Use “--output -“ to tell

Windows或者mac或者Linus用curl命令下载资源

curl -0 https://alibaba.github.io/arthas/arthas-boot.jar

的时候,会出现如下的警告:

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: " to save to a file.

其中“-0”的意思是“--remote-name”,这意味着:我们默认会用部分的远程URL的名字,作为本地下载并存储的名字。但这里curl命令显然不允许这么干,因为这可能会扰乱你的terminal(不知道具体原因)。所以,我们应该在command末尾加上“--output”指定下载的文件的名字

curl -0 https://alibaba.github.io/arthas/arthas-boot.jar --output arthas

这样就完美的解决了问题

你可能感兴趣的:(Linux,工作常用,虚拟机)