Skip to content

Instantly share code, notes, and snippets.

@devfreitag
Created March 7, 2026 14:29
Show Gist options
  • Select an option

  • Save devfreitag/df4008648d9560e66528cd046e841f0a to your computer and use it in GitHub Desktop.

Select an option

Save devfreitag/df4008648d9560e66528cd046e841f0a to your computer and use it in GitHub Desktop.
How to open projects in the Intellij IDEA from terminal

Create file /usr/local/bin/idea with the content:

#!/bin/sh

open -na "IntelliJ IDEA.app" --args "$@"

To use, just type idea <PATH_DIRECTORY> or idea . if you are already in the folder project.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment