#! /bin/sh
# sendnews destination... - protect & mail article on stdin to destinations
PATH=/bin:/usr/bin; export PATH

case $# in
0)
	echo "usage: $0 destination..." >&2
	exit 1 ;;
esac
(echo ''; sed 's/^/N/') | mail $*
