1 Star 0 Fork 0

fluent_liu/nsms-boot-build

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vks-override-open.sh 469 Bytes
一键复制 编辑 原始数据 按行查看 历史
danson.liu 提交于 2023-07-29 22:40 . 新增工具脚本(mac zsh版)
#!/bin/zsh
# 查看所有的shell cat /etc/shells
# 查看当前命令行shell echo $SHELL
cd ..
for file in `ls vkson-*/**/resources/config/override.props`
do
# 非空行
line=`cat $file | egrep -v '^\s*$' | wc -l`
# 以#开头的行(可能#前面有空格)
# count=`cat $file | egrep -c '^\s*#'`
count=`cat $file | egrep -c '^[[:space:]]*#'`
if [ $line -eq $count ]; then
echo "file: $file"
sed -i '' 's/^[[:space:]]*#//g' $file
fi
done
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/dansonliu/nsms-boot-build.git
git@gitee.com:dansonliu/nsms-boot-build.git
dansonliu
nsms-boot-build
nsms-boot-build
feature-升级springboot

搜索帮助