Skip to content

Instantly share code, notes, and snippets.

@blessanm86
Created December 27, 2021 07:06
Show Gist options
  • Save blessanm86/5d3fe99a50d22a3656fa43d608a9ac6e to your computer and use it in GitHub Desktop.
Save blessanm86/5d3fe99a50d22a3656fa43d608a9ac6e to your computer and use it in GitHub Desktop.
Snippets

Open project in intellij with idea command

  • create the file /usr/local/bin/idea
#!/bin/sh

open -na "IntelliJ IDEA.app" --args "$@"
  • You can open project now with idea .
  • in case of permission issues chmod +x /usr/local/bin/idea
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment