Last active
November 13, 2023 15:52
-
-
Save elvisoliveira/7a129c76f4e00f42b355d16e84985d95 to your computer and use it in GitHub Desktop.
PhpStorm2021.1
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 | |
| # JetBrains 2021.1 | |
| JB_PRODUCTS="IntelliJIdea CLion PhpStorm GoLand PyCharm WebStorm Rider DataGrip RubyMine AppCode" | |
| for PRD in $JB_PRODUCTS; do | |
| rm -r ~/.java/.userPrefs/jetbrains/"${PRD,,}"/*/ >/dev/null 2>&1 | |
| rm ~/.config/JetBrains/"${PRD}"*/eval/*.evaluation.key >/dev/null 2>&1 | |
| sed -i '/name="evlsprt.*"/d' ~/.config/JetBrains/"${PRD}"*/options/other.xml >/dev/null 2>&1 | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment