#!/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
#!/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
|
|
|
|