# John Hink <jhink@d.umn.edu>
#!/bin/sh

if [ -f .pine-lock ] 
then 
    echo "There is already a copy of pine running"
else 
    echo > .pine-lock
    xterm -fg white  -bg black -geometry 80x40 -e pine -id0 $1 $2 $3 $4
    rm .pine-lock
fi
