curl 基本用法
时间:2019-12-28 17:42:23
收藏:0
阅读:99
curl
usage: curl [options...] <url>
$ curl -h
-o, --output <file> 写入到文件,而不是输出到stdout
-O 写入到文件,文件名和远程文件一样
-L 跟随网站的跳转
例子
下载文件:
curl -LO https://github.com/x/releases/download/v3.0.1/xxx.AppImage
原文:https://www.cnblogs.com/kirito1/p/12112285.html
评论(0)