to delete old backups (or any other files) and free space execute following
find /path/to/files/* -type f -mtime +31 -delete
find where-to-look criteria what-to-do
to delete old backups (or any other files) and free space execute following
find /path/to/files/* -type f -mtime +31 -delete
find where-to-look criteria what-to-do
Comments
0 comments
Please sign in to leave a comment.