Skip to content

Instantly share code, notes, and snippets.

@ereami
Last active August 29, 2015 14:04
Show Gist options
  • Save ereami/588e8cb8b2d80c3e0f91 to your computer and use it in GitHub Desktop.
Save ereami/588e8cb8b2d80c3e0f91 to your computer and use it in GitHub Desktop.
Need to remove application cached files, logs, and so on in MacOS X
cd ˜/Library/Caches
find . -type f -delete
cd ˜/Library/Logs
find . -type f -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment