NotePublic/Software/Applications/Wget/Wget_基本使用.md
chen.yang 79eb233692 修正格式.
Signed-off-by: chen.yang <chen.yang@yuzhen-iot.com>
2022-01-28 10:48:09 +08:00

549 B

Wget 基本使用

# Http/Https
wget --http-user=<ftp usr name> --http-passwd=<password> <http/https>://<address>:<port>/<server path>/<file> -O /<output path>/<output file>
# Ftp 下载
wget --ftp-user=<ftp usr name> --ftp-password=<password> ftp://<address>:<port>/<server path>/<file> -O /<output path>/<output file>
# Http/Https/Ftp
wget --user=<ftp usr name> --password=<password> <http/https/ftp>://<address>:<port>/<server path>/<file> -O /<output path>/<output file>
# 断点续传
wget -c <...>
# 重试次数
wget -t 5 <...>