Last active
August 29, 2015 14:04
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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