cur下载地址 curl curl FTP 上传下载文件 1.查看文件 curl ftp://192.168.2.10/test/ -u user:passwd 查看test文件夹下的文件(文件夹后必须加 /),查看更目录直接写ftp://192.168.2.10/ curl ftp://192.1 ...
分类:
Web程序 时间:
2020-07-02 16:49:41
阅读次数:
83
CSS 中文开发手册 空单元 | empty-cells (Miscellaneous Level 2) - CSS 中文开发手册 empty-cells 该empty-cellsCSS属性指定用户端应该如何渲染周围的边框和背景有没有可见的内容的单元格。此属性时才适用border-collapse的... ...
分类:
Web程序 时间:
2020-07-02 00:03:47
阅读次数:
65
安装 docker docker version > /dev/null || curl -fsSL get.docker.com | bash service docker restart 常规命令 docker container ls #查看所有正在运行的 docker docker logs ...
分类:
其他好文 时间:
2020-07-01 20:21:33
阅读次数:
64
网上转变的方法基本都是写添加下面这句: curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-Type: application/x-www-form-urlencoded')); 但加上去后却根本没效果。 要想以 x-www-form-urle ...
分类:
Web程序 时间:
2020-07-01 15:56:01
阅读次数:
120
PHP CURL 函数相关文档参考 参考链接: https://www.php.net/manual/zh/ref.curl.php ...
分类:
Web程序 时间:
2020-07-01 11:06:24
阅读次数:
62
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" ...
分类:
系统相关 时间:
2020-07-01 09:39:22
阅读次数:
71
1、准备工作 1、安装 gcc 、vcpkg 等。 2、下载最新的 GDAL 源码。 3、使用 vcpkg 安装第三方库。 ./vcpkg install tiff install sqlite3[tool] ./vcpkg install geos ./vcpkg install curl ./v ...
分类:
系统相关 时间:
2020-06-30 13:00:36
阅读次数:
183
检测其它主机端口是状态 curl ip:port curl 192.168.1.1:8080 检测本机端口是否被占用 lsof -i:8000 查看所有端口详细信息,包括进程id sudo netstat -antulp sudo netstat -anltup | grep 8000 -a all ...
分类:
系统相关 时间:
2020-06-30 12:43:04
阅读次数:
63
$ sudo curl -sL -o /etc/yum.repos.d/khara-nodejs.repo \ https://copr.fedoraproject.org/coprs/khara/nodejs/repo/epel-7/khara-nodejs-epel-7.repo$ sudo y ...
分类:
Web程序 时间:
2020-06-29 13:05:57
阅读次数:
301
-o /dev/null 屏蔽原有输出信息 -s silent -w % 控制额外输出 -I 仅测试HTTP头 -m 10 最多查询10s #!/bin/bash status_code=curl -I -m 10 -o /dev/null -s -w %{http_code} www.baidu. ...
分类:
Web程序 时间:
2020-06-28 20:53:35
阅读次数:
209