1 Star 0 Fork 13

Yang/playground

forked from 数舟/playground 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
configs.sh 864 Bytes
一键复制 编辑 原始数据 按行查看 历史
数舟 提交于 2023-08-27 08:33 . update configYum
#!/bin/bash
CONFIG_FILE=$PLAY_HOME/configs.txt
# 添加配置信息
add_config() {
echo "$1 $2" >> "$CONFIG_FILE"
}
# 查询配置信息
query_config() {
pattern=$1
awk -v pattern="$pattern" '$1 == pattern { print $2; exit }' "$CONFIG_FILE"
}
# 修改配置信息
modify_config() {
pattern=$1
new_value=$2
sed -i "s@^$pattern.*@$pattern $new_value@" "$CONFIG_FILE"
}
# 主函数
main() {
case "$1" in
"add")
add_config "$2" "$3"
;;
"query")
result=$(query_config "$2")
if [[ -z $result ]]; then
echo "0"
else
echo "$result"
fi
;;
"modify")
modify_config "$2" "$3"
;;
*)
echo "无效的命令"
;;
esac
}
# 执行主函数
main "$@"
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/RoboterYang/playground.git
git@gitee.com:RoboterYang/playground.git
RoboterYang
playground
playground
master

搜索帮助