Created
February 9, 2021 05:30
-
-
Save shurajcodx/aa8e7e5d96333f851f53d3e6dda3f125 to your computer and use it in GitHub Desktop.
Reset Jetbrains Intellij IDE , WebStorm, PHPStorm - Work 2020.x.x and above version evaluation [Linux]
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
#!/bin/bash | |
# Intellij 2020.* | |
echo "Removing evaluation key for Intellij" | |
rm $HOME/.config/JetBrains/IntelliJIdea*/eval/*.key | |
rm $HOME/.config/JetBrains/IntelliJIdea*/options/other.xml | |
# PHPStorm 2020.* | |
echo "Removing evaluation key for PHPStorm" | |
rm $HOME/.config/JetBrains/PhpStorm*/eval/*.key | |
rm $HOME/.config/JetBrains/PhpStorm*/options/other.xml | |
# WebStorm 2020.* | |
echo "Resetting Webstorm" | |
rm $HOME/.config/JetBrains/WebStorm*/eval/*.key | |
rm $HOME/.config/JetBrains/WebStorm*/options/other.xml | |
rm -rf $HOME/.java/.userPrefs/jetbrains/ | |
rm $HOME/.java/.userPrefs/prefs.xml | |
echo "Done!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment