Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save screamingjungle/d3993ef978e06055dd58bedd9ba01219 to your computer and use it in GitHub Desktop.
Save screamingjungle/d3993ef978e06055dd58bedd9ba01219 to your computer and use it in GitHub Desktop.
RHEL: Find files that have not been accessed since
List:
find . -depth -type f -atime +7
Sum:
find . -depth -type f -atime +7 -print0 | xargs -0 du -hc | tail -n1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment