Skip to content

Instantly share code, notes, and snippets.

@simonfongnt
Created November 18, 2020 03:19
Show Gist options
  • Save simonfongnt/a7b73e3010b6d1a2b462b2303ccc7383 to your computer and use it in GitHub Desktop.
Save simonfongnt/a7b73e3010b6d1a2b462b2303ccc7383 to your computer and use it in GitHub Desktop.
check & delete /.cache ubuntu
what's going to be deleted:
find ~/.cache/ -depth -type f -atime +365
deleted (last accessed more than a year ago)
find ~/.cache/ -type f -atime +365 -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment