Linux系统wget下载文件
时间:2016-01-03 02:05 来源:linux.it.net.cn 作者:IT
Linux系统最常用下载命令是wget,通常的的使用方式如下,例如:
1、使用wget下载单个文件
wget http://oss.it.net.cn/ityun/get_cpu_mem_info.sh
2、使用wget -O下载并以不同的文件名保存
wget -O example.sh http://oss.it.net.cn/ityun/get_cpu_mem_info.sh
3、使用wget --limit -rate限速下载,限制速度为300K
wget --limit-rate=300k http://oss.it.net.cn/ityun/get_cpu_mem_info.sh
4、使用wget -c断点续传
wget -c http://oss.it.net.cn/ityun/get_cpu_mem_info.sh
5、使用wget -i下载多个文件
可以将多个下载链接写入到一个文档里
[root@iZ285ma471jZ-s3 test]# cat file.txt
http://oss.it.net.cn/ityun/a.sh
http://oss.it.net.cn/ityun/b.sh
http://oss.it.net.cn/ityun/c.sh
http://oss.it.net.cn/ityun/d.sh
http://oss.it.net.cn/ityun/e.sh
wget -i file.txt
(责任编辑:IT)
Linux系统最常用下载命令是wget,通常的的使用方式如下,例如: 1、使用wget下载单个文件 wget http://oss.it.net.cn/ityun/get_cpu_mem_info.sh
2、使用wget -O下载并以不同的文件名保存 wget -O example.sh http://oss.it.net.cn/ityun/get_cpu_mem_info.sh
3、使用wget --limit -rate限速下载,限制速度为300K wget --limit-rate=300k http://oss.it.net.cn/ityun/get_cpu_mem_info.sh
4、使用wget -c断点续传 wget -c http://oss.it.net.cn/ityun/get_cpu_mem_info.sh
5、使用wget -i下载多个文件 可以将多个下载链接写入到一个文档里
[root@iZ285ma471jZ-s3 test]# cat file.txt
wget -i file.txt |