#!/usr/bin/sh
#	Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T
#	  All Rights Reserved

#	THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T
#	The copyright notice above does not evidence any
#	actual or intended publication of such source code.
#
# Copyright (c) 1999 by Sun Microsystems, Inc.
# All rights reserved.

#ident	"@(#)batch.sh	1.6	00/02/14 SMI"	/* SVr4.0 1.3	*/

set -- `getopt p: $*`
if [ $? != 0 ]; then
    echo "Usage: batch [-p project]"
    exit 2
fi

/usr/bin/at -qb $*
