下载大文件笔记
1.
.启动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"