find /mnt/path -mtime +30 | xargs rm -rf Would this work? Deletes everything older than 30 days.
Supa Patron Joined Jan 10, 2014 Messages 204 Oct 1, 2018 #1 find /mnt/path -mtime +30 | xargs rm -rf Would this work? Deletes everything older than 30 days.
m0nkey_ MVP Joined Oct 27, 2015 Messages 2,739 Oct 1, 2018 #2 Why pipe it to xargs when there is a -delete flag? man find
droeders Contributor Joined Mar 21, 2016 Messages 179 Oct 1, 2018 #3 Also, the method in the OP won't handle files/directories with spaces (and other characters) in them. This can be worked around, but the delete option suggested by @m0nkey_ is probably better.
Also, the method in the OP won't handle files/directories with spaces (and other characters) in them. This can be worked around, but the delete option suggested by @m0nkey_ is probably better.