Cmd Generator

wget

从网络下载文件。

wget

示例

# 下载文件
wget https://example.com/file.zip

# 自定义输出名
wget -O output.zip https://example.com/file.zip

# 断点续传
wget -c https://example.com/large.iso

# 安静模式
wget -q https://example.com/file.zip

# 认证下载
wget --user=admin --password=secret https://example.com/private.zip

Sponsors