当前位置:首页
> 第14页
golang计算中文文字数量
fmt.Println(len("世界"), utf8.RuneCountInString("世界 "), utf8.RuneCountInString("abc123"), utf8.RuneCountInString(...
systemctl启动耗时排行
开机启动的服务 systemctl list-unit-files|grep enabled 服务启动耗时 systemd-analyze blame...
golang的os包使用备忘
来源:https://www.cnblogs.com/jkko123/p/7146474.html?utm_source=itdadao&utm_medium=referral package main;...
查找cpu占用高的函数for java
#!/bin/sh #echo "@查找到的进程信息:" #ps -ef|grep $1|grep -v grep|grep -v jstack cpuid=`ps -ef|grep $1|grep -v grep|grep -v j...
各版本浏览器driver下载
chromedriver: http://npm.taobao.org/mirrors/chromedriver/ https://sites.google.com/a/chromium.org/chromedriver/downloa...
ssl双向认证的loadrunner脚本编写
web_set_sockets_option("SSL_VERSION","TLS"); //定义TLS版本 web_set_certificate_ex( //添加证书pem文件 "CertFilePath=cli...
liunx特殊命令的信号捕捉
一般情况下加上 >/dev/null 2>& 就可以了,比如: mkdir /tmp/log /tmp/bak >/dev/null 2>& 像kill这种特殊情况,可以使用迂回方...