Mtime

From wikieduonline
Revision as of 13:52, 8 September 2020 by Welcome (talk | contribs)
Jump to navigation Jump to search

https://askubuntu.com/questions/589210/removing-files-older-than-7-days

find /path/to/ -type f -mtime +7 -name '*.gz' -execdir rm -- '{}' \;
find /path/to/directory/ -mindepth 1 -mtime +5 -depth -print
find /path/to/directory/ -mindepth 1 -mtime +5 -delete [1]

Related terms

  • -exec

See also

  • https://unix.stackexchange.com/questions/194863/delete-files-older-than-x-days
  • Advertising: