我尝试从github下载一个zip文件(大小约为50Mb)。
使用的命令是:
curl https://github.com/bhishanpdl/DMstack_obsfile_example/blob/master/example/trial00_good_fits.zip -L -o a.zip
curl -OLJ https://github.com/bhishanpdl/DMstack_obsfile_example/blob/master/example/trial00_good_fits.zip
curl https://github.com/bhishanpdl/DMstack_obsfile_example/blob/master/example/trial00_good_fits.zip -OLJ
当我查看下载的文件时,它约为30KB,当我解压缩时,它就是 不是我要找的文件。
当我直接从网站下载zip文件时,我可以下载 正确的zip文件(当我解压缩时,我得到50Mb的文件)。
问题
我们怎样才能使用curl
命令从github获取上述zip文件?
参考
http://www.compciv.org/recipes/cli/downloading-with-curl/
Download a .zip file from the command line
注意
我使用的是Macos EL Capitan而我没有wget
。
答案 0 :(得分:0)
下载网址略有不同。试试 -
curl https://github.com/bhishanpdl/DMstack_obsfile_example/raw/master/example/trial00_good_fits.zip -L -o a.zip