使用wget或者curl下载github release文件


有时候需要在服务器下载GitHub上的release资源,这时候我们可以使用wget或者curl进行处理,这里拿携程开源的配置中心Apollo为例,下载他的release版本

wget

wget --no-check-certificate --content-disposition https://github.com/ctripcorp/apollo/releases/download/v1.5.1/apollo-adminservice-1.5.1-github.zip

curl

curl -LJO https://github.com/ctripcorp/apollo/releases/download/v1.5.1/apollo-adminservice-1.5.1-github.zip


文章作者: 小张哥
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 小张哥 !
评论
 上一篇
Spring Aop AspectJ 摘录笔记 Spring Aop AspectJ 摘录笔记
原文链接:https://juejin.im/post/5a55af9e518825734d14813f @AspectJAspectJ是一个AOP框架,它能够对java代码进行AOP编译(一般在编译期进行),让java代码具有Aspect
2020-02-16
下一篇 
SpringBoot2.x Redis多数据源配置(Vavr函数式编程方式实现) SpringBoot2.x Redis多数据源配置(Vavr函数式编程方式实现)
Spring Boot 2.x版本升级以后,Redis连接库由原来的Jedis换成了Lettuce,但是提供给上层使用的api没有变化,在日常使用过程中难免会有需要使用多个库的情况,或者使用多个Redis实例,那么这个时候就需要维护两个Re
2020-01-10
  目录