ANSI C; sprintf now returns an int.
[unix-history] / usr / src / libexec / bugfiler / sendbug.sh
#!/bin/sh -
#
# Copyright (c) 1983 Regents of the University of California.
# All rights reserved. The Berkeley software License Agreement
# specifies the terms and conditions for redistribution.
#
# @(#)sendbug.sh 5.6 (Berkeley) 86/02/12
#
# Create a bug report and mail to '4bsd-bugs'.
#
TEMP=/tmp/bug$$
FORMAT=/usr/lib/bugformat
# uucp sites should use ": ${BUGADDR=ucbvax!4bsd-bugs}" with a suitable path.
: ${BUGADDR=4bsd-bugs@BERKELEY.EDU}
: ${EDITOR=/usr/ucb/vi}
trap '/bin/rm -f $TEMP ; exit 1' 1 2 3 13 15
/bin/cp $FORMAT $TEMP
if $EDITOR $TEMP
then
if cmp -s $FORMAT $TEMP
then
echo "File not changed, no bug report submitted."
exit
fi
case "$#" in
0) /usr/lib/sendmail -t -oi $BUGADDR < $TEMP ;;
*) /usr/lib/sendmail -t -oi "$@" < $TEMP ;;
esac
fi
/bin/rm -f $TEMP