有时从parent处继承的配置中,包括 git-commit-id-plugin ,但实际上不需要或临时想停止用git检查需要编译的代码,可以在项目pom.xml中增加 <skip>true</skip>配置,比如
2021-09-09
2021-09-03
linux命令行使用json格式化工具
from https://zhuanlan.zhihu.com/p/77177160
{"word": "hello",
"source": [ {
"firstName": "John",
},
{
"firstName": "Hunter",
},
{
"firstName": "Tony",
}]
}
k8s简单脚本
把常用命令用脚本简化
[code]
#!/bin/sh
if [ $# -lt 2 ]; then
echo "USAGE: $0 <logs|pod|search> <podname>"
exit 0
fi
if [ $1 = "search" ];then
kubectl get -n <namespace> -o wide pods|grep $2
elif [ $1 = "pod" ];then
kubectl describe pod -n <namespace> $2
elif [ $1 = "logs" ];then
kubectl logs -n <namespace> -f $2
elif [ $1 = "cmd" ];then
kubectl exec -it -n <namespace> $2 — /bin/bash
elif [ $1 = "restart" ];then
#kubectl get pod $2 -n <namespace> -o yaml |kubectl replace –force -f –
kubectl rollout restart deployment -n <namespace> $2
fi
[/code]
2021-08-21
Xshell 6 提示 “要继续使用此程序,您必须应用最新的更新或使用新版本”
from https://blog.csdn.net/lookingatsky/article/details/103760372
使用二进制编辑器修改nslicense.dll文件
步骤3:搜索“7F 0C 81 F9 80 33 E1 01 0F 86 81”
步骤4:修改“86”为“83”
步骤5:保存文件
2020-09-15
dos批处理脚本修改文件名
参考:
https://blog.csdn.net/A_BlackMoon/article/details/79998515
https://blog.csdn.net/txl199106/article/details/79266785
https://zhidao.baidu.com/question/233580687.html
批处理知识:
1. 使用set local enabledelayedexpansion之后,局部变量要使用 !var!方式引用
2. %%~i 表示完整路径的文件名, %%~nxi表示不带路径的文件名
3. 使用 set nfn=%nfn:你要排除的字符串=% 来替换掉想要去除的字符或字符串
完整批处理脚本如下: