#!/bin/csh
# script for finding files modified within n days

if ($#argv != 2) then
 echo "USAGE:  recent_files  "
 exit 1
endif

find $1 -mount -mtime -$2 -ls | sort -rnt   +6

    Source: geocities.com/siliconvalley/vista/8632

               ( geocities.com/siliconvalley/vista)                   ( geocities.com/siliconvalley)