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” 链接
标签:http,xx,nohup,aria2c,aria2,torrent,下载 来源: https://blog.csdn.net/ice666_1/article/details/122846382