Following command gives, all files that are modified in last 4 days.
find /IOTTOARCH/*.arc -mtime -4 -exec ls -rlt {} ;
Following command gives, all files that are modified before last 4 days.
find /IOTTOARCH/*.arc -mtime +4 -exec ls -rlt {} ;
Following command gives, all files that are modified in last 4 days.
find /IOTTOARCH/*.arc -mtime -4 -exec ls -rlt {} ;
Following command gives, all files that are modified before last 4 days.
find /IOTTOARCH/*.arc -mtime +4 -exec ls -rlt {} ;