I know how to find files updated within # of days but how can I find files not updated in # of days?
find [path] -type f -mtime -$1 -print
find [path] -type d -mtime -$1 -print
One way I can think of is to create list of updated files and match that list against the full list of files ... but this is not exactly what I am looking for.
All help will be appreciated!
Thank you in advance;
josel If you have the knowledge, consult and educate those who need it! - Jose Lerebours
find [path] -type f -mtime -$1 -print
find [path] -type d -mtime -$1 -print
One way I can think of is to create list of updated files and match that list against the full list of files ... but this is not exactly what I am looking for.
All help will be appreciated!
Thank you in advance;
josel If you have the knowledge, consult and educate those who need it! - Jose Lerebours