Skip to content

Instantly share code, notes, and snippets.

@tareqy
Created August 30, 2018 17:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tareqy/de28135360ad610aa780cf6cef2bcebf to your computer and use it in GitHub Desktop.
Save tareqy/de28135360ad610aa780cf6cef2bcebf to your computer and use it in GitHub Desktop.
List All files that was not accessed in the last 7 days
# List All files that was not accessed in the last 7 days
find /home/vod/vod/ -type f -name '*.mp4' -atime +7
# Total Files Count
find /home/vod/vod/ -type f -name '*.mp4' -atime +7 | wc -l
# Delete The Files
find /home/vod/vod/ -type f -name '*.mp4' -atime +7 -exec rm -f {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment