Skip to content

Instantly share code, notes, and snippets.

@shurajcodx
Created February 9, 2021 05:30
Show Gist options
  • Save shurajcodx/aa8e7e5d96333f851f53d3e6dda3f125 to your computer and use it in GitHub Desktop.
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]
#!/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