摘要: 参考这里启动jar包shell脚本修改过来的 #!/bin/bash # 默认应用名称 defaultAppName='./gadmin' appName='' if [[ $1 && $1 != 0 ]] then appName=$1 else appName=$defaultAppName f 阅读全文
posted @ 2022-08-19 11:51 JohnRey 阅读(257) 评论(0) 推荐(0) 编辑
摘要: func removeParentheses(strInfo string) string { strReg := "\\(.*?\\)|\\{.*?}|\\[.*?]|(.*?)" reg := regexp.MustCompile(strReg) return reg.ReplaceAllStr 阅读全文
posted @ 2022-08-19 09:40 JohnRey 阅读(303) 评论(0) 推荐(0) 编辑