OGG运维优化脚本-查询维护类--操作选择
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了OGG运维优化脚本-查询维护类--操作选择相关的知识,希望对你有一定的参考价值。
文件:ggedit
路径:$HOME/ggscript
功能:该脚本用于选择使用其他脚本
通过alias别名初始化入.profile和.bash_profile文件,以edit指令方式使用
#!/bin/bash echo "Select an action you want to perform" select ch in "addtable" "addtrandata" "annotate" "reannotate" "search" "skiptrans" "exit" do case $ch in "addtable") cd $HOME/ggscript/gginsert exec ./insert.sh ;; "addtrandata") cd $HOME/ggscript/gginsert exec ./addtrandata.sh ;; "skiptrans") cd $HOME/ggscript/ggtrandata exec ./skiptrans.sh ;; "annotate") cd $HOME/ggscript/ggcomment exec ./comment.sh ;; "reannotate") cd $HOME/ggscript/ggcomment exec ./recomment.sh ;; "search") cd $HOME/ggscript/ggsearch exec ./search.sh ;; "exit") echo "process complete" break; ;; *) echo "Please select your choice :"1.addtable" "2.addtrandata" "3.annotate" "4.reannotate" "5.search" "6.skiptrans" "7.exit" " ;; esac done;
演示范例
$edit
Select an action you want to perform
1) addtable ---选择批量加表脚本
2) addtrandata---选择附加日志新增脚本
3) annotate ---选择批量注释脚本
4) reannotate –选择批量取消注释脚本
5) search --选择批量搜索脚本
6) skiptrans –选择长事务跳过脚本
7) exit –退出
#?
本文出自 “netsman” 博客,请务必保留此出处http://netsman.blog.51cto.com/5750076/1939642
以上是关于OGG运维优化脚本-查询维护类--操作选择的主要内容,如果未能解决你的问题,请参考以下文章