• 1
  • 2
  • 3
  • 4
  • 5
阿里云主机ECS 首 页  »  帮助中心  »  云服务器  »  阿里云主机ECS
ECS Linux系统wget下载文件及常用使用方式介绍
发布日期:2015-12-30 15:12:6

  Linux系统最常用下载命令是wget,常用使用方式如下所示:

  1.使用wget -c断点续传

  wget -c http://oss.aliyuncs.com/aliyunecs/get_cpu_mem_info.sh

  2.使用wget下载单个文件

  wget http://oss.aliyuncs.com/aliyunecs/get_cpu_mem_info.sh

  3.使用wget --limit -rate限速下载,限制速度为300K

  wget --limit-rate=300k http://oss.aliyuncs.com/aliyunecs/get_cpu_mem_info.sh

  4.使用wget -O下载并以不同的文件名保存

  wget -O example.sh http://oss.aliyuncs.com/aliyunecs/get_cpu_mem_info.sh

  5.使用wget -i下载多个文件

  可将多个下载链接写入到一个文档里

  [root@iZ285ma471jZ-s3 test]# cat file.txt

  http://oss.aliyuncs.com/aliyunecs/a.sh

  http://oss.aliyuncs.com/aliyunecs/b.sh

  http://oss.aliyuncs.com/aliyunecs/c.sh

  http://oss.aliyuncs.com/aliyunecs/d.sh

  http://oss.aliyuncs.com/aliyunecs/e.sh

  wget -i file.txt