macos下安装wget等 windows下安装wget
时间:2022-10-10 阅读:691
国内源安装
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
windows10下安装wget openssl等
方法1:https://github.com/webfolderio/wget-windows下载后在cmd 进入wget.exe
方法2:
chocolatey官网(https://chocolatey.org
用管理员运行powershell.exe
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
安装wget
choco install wget
批量下载url.txt里面的网址
wget http://www.a.com/url.txt
wget -i url.txt
网友评论