Return to Snippet

Revision: 30995
at August 27, 2010 00:11 by wnasich


Initial Code
#!/bin/bash
gdialog --title "some title for the dialog" --yesno "some text \n the yes/no question." 

if [ $? == 0 ]; then
	{commands for yes}
else
	{maybe other commands for no}
fi

Initial URL


Initial Description


Initial Title
Yes/No GUI dialog on linux using gdialog

Initial Tags
linux, ubuntu

Initial Language
Bash