在 curl 中,您需要指定需要下载的文件保持与服务器中的一样完整,即,*.mp3
将下载为*.mp3
而不是屏幕截图中所示的文件。来自curl --help
:
-O, --remote-name Write output to a file named as the remote file
因此,要下载上述文件,你只需添加-O
到命令中,即
curl -O http://files.unity3d.com/levi/unity-editor-5.2.2f1+20151018_amd64.deb
下面是一个屏幕截图,可以解释一下: