]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - contrib/dialog/samples/tailboxbg
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / contrib / dialog / samples / tailboxbg
1 #!/bin/sh
2 # $Id: tailboxbg,v 1.10 2012/06/29 09:48:28 tom Exp $
3
4 . ./setup-vars
5
6 . ./setup-tempfile
7
8 ./killall listing
9 ./listing >listing.out &
10
11 $DIALOG --title "TAIL BOX" \
12         --no-kill "$@" \
13         --tailboxbg listing.out 24 70 2>$tempfile
14
15 # wait a while for the background process to run
16 sleep 10
17
18 # now kill it
19 kill -$SIG_QUIT `cat $tempfile` 2>&1 >/dev/null 2>/dev/null
20
21 # ...and the process that is making the listing
22 ./killall listing