This repository has been archived on 2023-08-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

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