axel多线程下载

介绍:wget是单线程的,axel通过打开多个 HTTP/FTP 连接来将一个文件进行分段下载,从而达到加速下载的目的。对于下载大文件,该工具将特别有用。


安装:

rpm -ivh http://pkgs.repoforge.org/axel/axel-2.4-1.el5.rf.x86_64.rpm


使用:

axel -h

Usage: axel [options] url1 [url2] [url...]


--max-speed=x           -s x    Specify maximum speed (bytes per second)  限速

--num-connections=x     -n x    Specify maximum number of connections   线程数

--output=f              -o f    Specify local output file  另存为

--search[=x]            -S [x]  Search for mirrors and download from x servers

--header=x              -H x    Add header string

--user-agent=x          -U x    Set user agent

--no-proxy              -N      Just don't use any proxy server

--quiet                 -q      Leave stdout alone  静默

--verbose               -v      More status information

--alternate             -a      Alternate progress indicator

--help                  -h      This information

--version               -V      Version information



cat download_video.sh 


#!/bin/bash

Downcom="/usr/bin/axel"

Downurl=$1

Downdir=$2

if [ $# -eq 2 ];then

  $Downcom -n 20 $Downurl -o $2 -q

else 

  echo "ie. sh $0 http://www.baidu.com /tmp/"

fi


转载于:https://my.oschina.net/longquan/blog/213577

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值