for i in `ls -t [67]*`
do
if [ -f $i ] ; then
echo;echo === $i ===
ls -l $i
ar tv $i
echo -n "remove shippment "
rm -i $i
fi
done

