#!/bin/ksh

# Get list of newest public faxes for PitStop.

# Author:  Cynthia Roush
# Date:    09/27/95

. /u/hsim/other/fax.data/scripts/setvars
cd $TMPDIR

# remove comments, fee faxes, and limited distribution faxes
sed "/^#/d" $FAXDB > tmp$$
sed "/! limited/d" tmp$$ > tmp1$$
sed "/! fee !/d" tmp1$$ > tmp$$

cut -c$NEW_COLS tmp$$ > createdate$$
cut -c$FN_COLS  tmp$$ > filename$$

paste -d " " createdate$$ filename$$ > tmp$$

sort -r tmp$$ > tmp1$$
head -n 10 tmp1$$

rm *$$
