使用gdialog在linux上创建Yes/No GUI对话框
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用gdialog在linux上创建Yes/No GUI对话框相关的知识,希望对你有一定的参考价值。
#!/bin/bash gdialog --title "some title for the dialog" --yesno "some text the yes/no question." if [ $? == 0 ]; then {commands for yes} else {maybe other commands for no} fi
以上是关于使用gdialog在linux上创建Yes/No GUI对话框的主要内容,如果未能解决你的问题,请参考以下文章