Hunter的大杂烩 技术学习笔记

2022-08-15

openjdk 18 + IntelliJ IDEA 命令行乱码

Filed under: 技术话题 — hunter @ 3:59 pm

from: https://blog.csdn.net/weixin_63009611/article/details/125714502

openjdk 18处理中文方法有变:

官方对JDK-18的编码做了一些调整,在使用JDK-18时会有乱码问题,解决方法为使用以前的JDK版本(如JDK-17),或者在项目和文件编码是UTF-8的情况下,点击Run -> Edit configurations,在VM options里加入”-Dfile.encoding=gbk”,(如果没有VM options选项,点击右上角”Modify options(可能为蓝色字体)” -> java | “add VM options”),就好了。

2022-08-12

find 用正则表达式匹配文件名

Filed under: 技术话题 — hunter @ 11:25 pm

参考:https://www.5axxw.com/questions/content/277vyc

find . -iregex “.*[a-z]+[-][a-z]+[.]log” -regextype egrep

./alarm-err.log
./syncdata-err.log
./data-err.log
./btsvr-err.log
./api-err.log
./dba-err.log
./procmgr-err.log
./data-bbx.log
./task-err.log

2022-08-07

编译go 程序遇到 invalid version 处理方法

Filed under: 技术话题 — hunter @ 5:42 pm

编译prometheus插件时,频繁出现以下错误:

github.com/mwitkow/go-conntrack@v0.0.0-20161129095857-cc309e4a2223: invalid version

github.com/golang/protobuf@v1.4.0-rc.4.0.20200313231945-b860323f09d0: invalid version:

主要是依赖的模块版本在github上已经被删除,可以使用replace方式,将相关版本替换,修改项目go.mod ,增加如下条目:

replace (
github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0 => github.com/golang/protobuf v1.4.0
github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223 => github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f
google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc => google.golang.org/protobuf v1.24.0
)

bash正则表达式取IP

Filed under: 技术话题 — hunter @ 5:38 pm

from:https://www.nuomiphp.com/eplan/626355.html

from: https://blog.csdn.net/qq_41111018/article/details/119768553

ifconfig eth0 |grep -Eo ‘([0-9]{1,3}\.){3}[0-9]{1,3}’|head -n1

Powered by WordPress