环境
centos7 wget 是一个在Linux系统中常用的命令行下载工具,它能够从网络上下载各种文件,如文本、图片、音频、视频等。
常见用法和说明
- 安装 yum install -y wget
- 下载单个文件
wget [URL]
如,wget http://example.com/example.txt
- 另存文件名
wget -O myfile.txt http://example.com/example.txt
- 下载多个文件
wget -r http://example.com/
其他命令可以通过运行“man wget”命令查看完整的wget手册以获取更多信息。