19 lines
280 B
Bash
Executable File
19 lines
280 B
Bash
Executable File
#!/bin/sh
|
|
# $Id: tailbox,v 1.3 2003/08/15 19:40:37 tom Exp $
|
|
: ${DIALOG=dialog}
|
|
|
|
./killall listing
|
|
./listing >listing.out &
|
|
|
|
$DIALOG --title "TAIL BOX" \
|
|
--tailbox listing.out 24 70
|
|
|
|
case $? in
|
|
0)
|
|
echo "OK";;
|
|
255)
|
|
echo "ESC pressed.";;
|
|
esac
|
|
|
|
./killall listing
|