Last active
October 1, 2023 12:07
-
-
Save Nav-Appaiya/5a349fd46a6beece639b to your computer and use it in GitHub Desktop.
Purge PHPStorm 9.x Settings on OSX Yosemite
This file contains 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
# PHPStorm v9.0 | |
rm -rf ~/Library/Application\ Support/WebIde90 | |
rm -rf ~/Library/Cache/WebIde90 | |
rm -rf ~/Library/Preferences/WebIde90 | |
# PHPStorm v10.0 | |
rm -rf ~/Library/Application\ Support/WebIde100 | |
rm -rf ~/Library/Cache/WebIde100 | |
rm -rf ~/Library/Preferences/WebIde100 | |
# Or the Sudo 1-Liner command | |
sudo rm -rf ~/Library/Application\ Support/WebIde90 && sudo rm -rf ~/Library/Cache/WebIde90 && sudo rm -rf ~/Library/Preferences/WebIde90 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
On OSX El Captian it's rather ~/Library/Caches/... not ~/Library/Cache/...