find all files between specific days (4 days old).
Jun 06
find ./ -type f -mtime -4 -exec ls -al {} \;
The beginning of knowledge is the discovery of something we do not understand. (Frank. Herbert)
Jun 06
find ./ -type f -mtime -4 -exec ls -al {} \;