我编写了这个菜单,它调用了几个脚本。这个脚本之一是
dbus-monitor --system
因此它通过 dbus 显示实时流量。
但是当我想退出时,我通常会这样做Ctrl+ C,但这也会退出我的菜单,我只想返回我的菜单。
有没有我可以在 dbus-moniter 之后放置的代码,当检测到退出时,它会再次启动我的菜单?我的菜单只是另一个 .sh 脚本
或者 ....
- - - - - - - - 阐明 - - - - - - - -
我在脚本编写方面“还没有”那么先进;)。这是我调用 dbus 脚本的菜单
select opt in "dbus Live Traffic" "option 2" "Main menu" "Quit"
do
case $opt in
"dbus Live Traffic")
curl -s -u lalala:hihihi ftp://ftp.somewhere.com/folder/dbuslivetraffic.sh | bash ;;
"option 2")
do_something ;;
"Main menu")
main_menu;;
"Quit")
quit_menu;;
esac
if [[ $opt != "Main menu" ]] || [[ $opt != "Quit" ]] ;
then
main_menu
fi
done
这是我的 dbuslivetraffic.sh 的内容
dbus-monitor --system
现在只有这一行,但也许在不久的将来会有更多的代码被添加到这个脚本中。
我真的不明白我需要把TRAP
@RoVo建议的函数放在哪里