wget

Summary

  • 使用 wget 发送网络请求,下载网络文件
  • 从互联网下载数据

Demo

# 直接将文件下载到当前目录中。
wget https://www.duchaoqun.cn/a.txt

# 使用 -O 参数将下载下来的文件重新命名。
wget -O newFileName https://www.duchaoqun.cn/a.txt
原文地址:https://www.cnblogs.com/duchaoqun/p/13372182.html