9 lines
123 B
Bash
9 lines
123 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
dialog --title "Dialog title" --inputbox "Enter your name:" 0 0
|
||
|
echo test
|
||
|
|
||
|
#cat /dev/urandom
|
||
|
exit $?
|
||
|
|