#!/bin/sh
#
#   This script is used to reconstruct a outbound Cnews togo file
#   in the event that I need to dink with a posted article/set of articles.
#   This requires that you cd to the newsgroup spool directory first...
#
for i in $*
do
         echo "`pwd`/$i `ls -l $i | field 5`"
done

