码迷,mamicode.com
首页 >  
搜索关键字:curl -O    ( 5038个结果
dnspod CURL模拟访问
使用CURL模拟访问网页,保留返回的COOKIE <?php class dnspod { public static function api_call($api, $data) { $api = 'https://dnsapi.cn/' . $api; echo $api . PHP_EOL; ...
分类:Web程序   时间:2021-01-30 11:45:04    阅读次数:0
Mac上安装brew的那些坑
macOS11.1 入坑! 网上看了一下午的帖子,包括官网,重装command line tool,修改brew_install文件,报错443,Faild during:git getch错误 脱坑! 终端复制粘贴,直接回车 /bin/zsh -c "$(curl-fsSL https://git ...
分类:系统相关   时间:2021-01-29 11:56:58    阅读次数:0
powerlevel10k: 最好看,方便,实用的命令行主题
powerlevel10k: 最好看,方便,实用的命令行主题 项目地址 安装 Linux 安装 Zsh sudo apt install zsh 安装 Oh-My-Zsh 方法 命令 curl sh -c "$(curl -fsSL https://raw.githubusercontent.com ...
分类:其他好文   时间:2021-01-29 11:50:41    阅读次数:0
macbook 安装homebrew失败
mac安装homebrew失败怎么办? 根据官网介绍的安装方式 https://brew.sh/index_zh-cn /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" ...
分类:系统相关   时间:2021-01-27 13:25:07    阅读次数:0
berw安装
Homebrew是mac的包管理器,他可以安装任何你想安装的东西 安装方法:在命令行输入 /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" Failed ...
分类:其他好文   时间:2021-01-26 11:44:27    阅读次数:0
在CentOS 8/7、RHEL 8/7系统上安装Node.js 14版本的方法
1.运行Node.js安装程序脚本 下载并执行脚本: 1 2 3 $ sudo yum -y install curl $ curl -sL https://rpm.nodesource.com/setup_14.x | sudo bash - 2.在CentOS 8/7、RHEL 8/7系统上安装 ...
分类:Web程序   时间:2021-01-22 12:00:16    阅读次数:0
制作docker镜像
编写Dockerfile # 使用哪个镜像为基础 FROM nginx # 安装apt-get后清理垃圾文件 RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* # 复制文件 COPY index. ...
分类:其他好文   时间:2021-01-20 11:55:13    阅读次数:0
远程调用jenkins
//远程触发脚本 2种方式 1.配合 jenkins-cli.jar java -jar "E:\Repositories\atoms\hooks\jenkins-cli.jar" -s http://192.168.0.202:8080/ -auth hookuser:hookuser -webS ...
分类:其他好文   时间:2021-01-18 10:31:53    阅读次数:0
Postman简单用法以及转cURL等命令的正确姿势
2019.07.06 22:49 4747浏览 一、背景 Postman很多公司测试代码的一个常用工具。掌握其用法,对我们接口的测试有很大的帮助。 本文将对其简单的用法以及如何转成其他命令进行讲解。 二、演示 2.1 下载和安装 下载地址在这里,安装很简单自行安装 https://www.getpo ...
分类:Web程序   时间:2021-01-14 11:07:43    阅读次数:0
Spring整合Mybatis
Spring整合Mybatis ? 需要的导入的依赖: Mybatis <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.5.2</version> </dependency ...
分类:编程语言   时间:2021-01-13 11:08:14    阅读次数:0
5038条   上一页 1 ... 7 8 9 10 11 ... 504 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!