1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#!/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