#!/bin/sh
# this is just a simple script to run the one line sed
# command to strip off the NNTP Posting Header that
# my ISP's newsfeed doesn't like.
# this could be written as a one liner
# sed -e CMD $1 > $2

COMMAND=$0
ETCDIR=/etc/suck			# location of sucknewsrc* and killfile*
GETNEWSCONF=${ETCDIR}/get-news.conf	# defaults for this script

#set -x

if [ $# -ne 2 ]; then
	echo
	echo "Usage `basename $0` infile outfile <RETURN>"
	echo
	exit -1
fi

SEDCMD=`grep ^sedcmd: ${GETNEWSCONF} \
		| awk '{gsub(" ","");print}' | cut -c8-`
OUTFILE=$2
INFILE=$1

if [ -f ${INFILE} ]; then

	sed "1,/^$/{
${SEDCMD}
}" ${INFILE} > ${OUTFILE}
		
	if [ $? -ne 0 ]; then
		echo "Error"
		exit -1
	fi

else
	echo "$1 does not exist"
	exit -1
fi
