mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 00:04:14 -05:00
12 lines
183 B
Bash
Executable file
12 lines
183 B
Bash
Executable file
#!/bin/sh
|
|
DIALOG=${DIALOG=/usr/bin/dialog}
|
|
|
|
$DIALOG --title "PROGRAM BOX: 'cal'" --clear \
|
|
--prgbox "cal" 13 27
|
|
|
|
case $? in
|
|
0)
|
|
echo "OK";;
|
|
*)
|
|
echo "Exit code:" $?;;
|
|
esac
|