Download Files Using the wget Command
作者:XD / 发表: 2024年3月12日 01:49 / 更新: 2024年3月12日 01:49 / 编程笔记 / 阅读量:717
wget "https://your_download_link.com/file.zip?OSSAccessKeyId=LTAI5tANVdobr&Expires=17092376&Signature=S6VRmcSbmM%3D" -O zip_file.zip
Command Breakdown
wget
: This tells the computer we're using thewget
tool.- The part inside the first quotation: This is the URL of the file, telling
wget
where the file we want to download is located. -O zip_file.zip
: This option instructswget
to save the downloaded file aszip_file.zip
.
相关标签