curl -o /dev/null -s -w %{time_namelookup} %{time_connect} %{time_starttransfer} %{time_total} %{speed_download}"\n" https://www.baidu.com -o:把curl 返回 ...
分类:
Web程序 时间:
2020-07-20 15:33:07
阅读次数:
111
使用示例: $atomic = new Swoole\Atomic(); $serv = new Swoole\Server('127.0.0.1', '9501'); $serv->set([ 'worker_num' => 1, 'log_file' => '/dev/null' ]); // ...
分类:
系统相关 时间:
2020-07-19 23:48:19
阅读次数:
94
#/bin/bash # 设置时区并同步时间 ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime if ! crontab -l |grep ntpdate &>/dev/null ; then (echo "* 1 * * * ntpdat ...
分类:
其他好文 时间:
2020-07-13 15:31:09
阅读次数:
97
nohup java -Dserver.port=8087 -Dspring.config.location=application-generic.yml -jar ${APP_HOME}/${APP_NAME} >/dev/null 2>&1 #-Dserver.port为指定端口启动 #-Ds ...
分类:
移动开发 时间:
2020-07-08 15:25:20
阅读次数:
106
命令行 type c:\autoexec.bat > NUL Powershell echo 1 > $null ...
大家好,我是良许。 大家知道,在 Linux 下,一切皆文件,对于设备文件也是如此。我们在工作的过程中,经常会看到 /dev/null 这个玩意,那它到底是什么呢? 专业地讲,/dev/null 是一个虚拟设备文件。而对程序而言,这些虚拟设备文件则会被当成真实的文件对待。程序可以向这种数据源请求数据 ...
分类:
系统相关 时间:
2020-07-06 23:58:45
阅读次数:
118
安装 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
1、使用echo "" > file_name,直接将空字符串重定向并覆盖到目标文件 2、使用cat /dev/null > file_name,读取dev目录下的一个null文件,并重定向覆盖目标文件,类似方法1 3、使用vi或vim进入文件,在指令模式下(进入方法,输入冒号:)输入 %d,即可清 ...
分类:
系统相关 时间:
2020-06-29 15:34:00
阅读次数:
274
-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
重定向一些不常见的操作,以及解析“>/dev/null 2>&1”和“2>&1 >/dev/null”。 ...
分类:
其他好文 时间:
2020-06-23 15:52:04
阅读次数:
54