diff --git a/Software/Applications/Wget/Wget_基本使用.md b/Software/Applications/Wget/Wget_基本使用.md new file mode 100644 index 0000000..7120846 --- /dev/null +++ b/Software/Applications/Wget/Wget_基本使用.md @@ -0,0 +1,14 @@ +# Wget 基本使用 + +```bash +# Http/Https +wget --http-user= --http-passwd= ://
:// -O // +# Ftp 下载 +wget --ftp-user= --ftp-password= ftp://
:// -O // +# Http/Https/Ftp +wget --user= --password= ://
:// -O // +# 断点续传 +wget -c <...> +# 重试次数 +wget -t 5 <...> +``` \ No newline at end of file