#!/bin/sh 
##  Copyright 1996, Richard M. Troth, all rights reserved.  <plaintext> 
# 
#	  Name: uftlogin (shell script) 
#		Unsolicited File Transfer, file notification at login 
#	Author: Rick Troth, Houston, Texas, USA 
#	  Date: 1996-May-2 
# 
 
# 
# 
cd /usr/spool/uft/$LOGNAME 
UFTCOUNT=`ls *.cf *.df *.ef | awk -F. '{print $1}' | sort | uniq | wc -l` 
echo "Files: $UFTCOUNT RDR" 
 

