cekong

导航

下载大文件笔记

1.

Ubuntu下如何下载百度网盘里的大文件

安装使用aria2下载百度网盘内容

百度云使用Aria2下载

.启动aria2

sudo aria2c --conf-path=/etc/aria2/aria2.conf

2.wget下载  https://www.cnblogs.com/lsdb/p/7171779.html

#!/bin/sh


start = 'date + %s'



echo "Prepare to download xxx zip file..."
wget -c http://xxx
unzip **.zip
rm -f **.zip


end = 'date + %s'
runtime = $((end - start))

echo "Download completed in " $runtime  " second"

 

 

posted on 2019-07-18 09:46  cekong  阅读(152)  评论(0编辑  收藏  举报