Posted on | by liu
其实只要接触过linux的人都知道,wget这个东东非常好,下载全自动断点续传。无论如何打断了它都会自动继续….
使用wget下载单个文件
wget https://www.liuzhongwei.com/testfile.zip
下载并以不同的文件名保存
wget -O wordpress.zip https://www.liuzhongwei.com/download.aspx?id=1080
wget限速下载
wget --limit-rate=300k https://www.liuzhongwei.com/testfile.zip
使用wget断点续传
wget -c https://www.liuzhongwei.com/testfile.zip
使用wget后台下载
wget -b https://www.liuzhongwei.com/testfile.zip
下载多个文件
wget -i filelist.txt
cat > filelist.txt
url1
url2
url3
url4
暂无相关文章