How to delete files by date
This will delete the content of the specified folder without deleting folders, just files.
find /var/Vol1/* -mtime +29 -exec rm -f {} \;
Tags: delete files by age date, How to Delete files by date range, Linux
This will delete the content of the specified folder without deleting folders, just files.
find /var/Vol1/* -mtime +29 -exec rm -f {} \;
Tags: delete files by age date, How to Delete files by date range, LinuxYou cannot comment on this entry