aria2

// 安装
yum install aria2

// 直接下载
aria2c http://xx.com/xx

// 重定名
aria2c -o yy http://xx.com/xx

// torrent下载
aria2c xxx.torrent

// torrent下载(nohup)
nohup aria2c 1.torrent >/D/getfiles/1/nohup.out 2>&1 &

// torrent下载(nohup,查看一下)
tail -n 200 -f /D/getfiles/1/nohup.out

// 磁力下载
aria2c 磁力链接

// 列出种子内容
aria2c -S xxx.torrent

// 下载种子内编号为1,4,5,6,7的文件
aria2c --select-file=1,4-7 xxx.torrent

// 设置代理(未验证)
aria2c --all-proxy=“http://127.0.0.1:1080” 链接

上一篇:JVM之垃圾收集算法(七)


下一篇:超过100w条数据表的分页查询优化