9 lines
196 B
Bash
Executable File
9 lines
196 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "TEST OUTPUT: Test var is: $TEST_VAR"
|
|
|
|
#dialog --stdout --title "Interact with me!" \
|
|
# --backtitle "This is user interaction." \
|
|
# --yesno "Yes: pass, No: fail" 7 60
|
|
exit $?
|