Skip to content

Instantly share code, notes, and snippets.

@elvisoliveira
Last active November 13, 2023 15:52
Show Gist options
  • Select an option

  • Save elvisoliveira/7a129c76f4e00f42b355d16e84985d95 to your computer and use it in GitHub Desktop.

Select an option

Save elvisoliveira/7a129c76f4e00f42b355d16e84985d95 to your computer and use it in GitHub Desktop.
PhpStorm2021.1
#!/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