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 |