#!	/bin/csh -f
#
# Copyright 1993, 1994, 1995 by the Regents of the University of California.
# see the file "Copyright" in the distribution for conditions of use.
#
#
set temp = `mktemp -c`
#
echo "Files in your home directory listed in order of size: "
echo " "
#
#	print bytes, kilobytes, mod time, path
cd ~
find . -type f -user $USER -printf "%s %k %t %P\n"  \
	| sort -nbr \
	| awk '{ if( NF > 1 ) printf "file_options %s\nif( $status ) exit\n", $0 }' > $temp
source $temp
/bin/rm $temp
