#!/bin/sh
if [ "$1"x = "x" ]; then 
   echo "Please name a newsgroup to post to."
   exit 1
fi
awk -f /etc/news/postlistmail.awk | /usr/lib/news/inews -S -h -n $1
exit 0
