freebsd-dev/gnu/usr.bin/dialog/TESTS/treebox
Jordan K. Hubbard 364c8e85fb Teach this code about the new tree functionality of libdialog.
Submitted by:	"Anatoly A. Orehovsky" <tolik@mpeks.tomsk.su>
1998-09-28 16:11:22 +00:00

26 lines
460 B
Bash
Executable File

#!/bin/sh
DIALOG=${DIALOG=/usr/bin/dialog}
$DIALOG --clear --title "TREE BOX" \
--hline "Press arrows, TAB or Enter" \
--hfile "../COPYING" \
--tree "/" \
"This is tree box" -1 -1 10 \
`find -x / -type d` 2>/tmp/tree.tmp.$$
retval=$?
choice=`cat /tmp/tree.tmp.$$`
case $retval in
0)
echo "'$choice' chosen.";;
1)
echo "Cancel pressed.";;
255)
[ -z "$choice" ] || echo $choice ;
echo "ESC pressed.";;
esac
rm -f /tmp/tree.tmp.$$