天天看点

axel多线程下载ftp文件(需登录)UbuntuStep 1: 下载axelStep 2:开始下载

Step 1: 下载axel

sudo apt-get install axel
           

Step 2:开始下载

  • axel是自动支持断点下载的
axel -n 10 -o </download folder/> <url/abc.xx>			# 10表示线程数量
           
  • 这里需要说明一下,如果ftp是需要账号和密码登录的,比如:
  • 账号:

    admin

  • 密码:

    password

    那么最后的下载链接应该是:
axel -n 10 -o </download folder/> <ftp://admin:[email protected]/abc.xx>
           

继续阅读