8 lines
203 B
Bash
8 lines
203 B
Bash
|
#!/usr/bin/env bash
|
||
|
echo CURSES DIALOG TEST
|
||
|
echo "This is a test of how curses dialogs are handled. Expect freaky behaviour."
|
||
|
|
||
|
whiptail --title "Dialog title" --inputbox "Enter your name:" 0 0
|
||
|
|
||
|
exit $?
|