2021-03-25 06:13:48 +00:00
|
|
|
#!/usr/bin/env bash
|
2021-04-05 01:21:05 +00:00
|
|
|
echo CURSES DIALOG TEST
|
|
|
|
echo "This is a test of how curses dialogs are handled. Expect freaky behaviour."
|
2021-03-25 06:13:48 +00:00
|
|
|
|
|
|
|
dialog --title "Dialog title" --inputbox "Enter your name:" 0 0
|
|
|
|
|
|
|
|
exit $?
|