Quickly list files with time of last modification:
# ls -alt
If you need to remove any that have not been modified lately:
- verify files that will be worked on by running with ls first
- delete at will without warning
# find ./*.rrd -type f -mmin +5 -exec ls {} \;
# find ./*.rrd -type f -mmin +5 -exec rm {} \;
No comments:
Post a Comment