#!/bin/sh
#   tl file
# Fire up an xterm running taillog on the file.

N='-33'
if [ $# -lt 1 ];then echo Usage: $0 [-N] file; exit 1; fi

F=$1
shift
if [ $# -gt 0 ];then
	N=$F
	F=$1
	shift
fi

exec xterm -fg white -bg black -g 150x20 -title "$F" -e taillog $N $F
