Reputation: 2724
Following this question, it seems that it is possible to open a file from the shell with IntelliJ on MAC.
IntelliJ: how to open files in an existing IntelliJ from the command line
Is there anything something similar for Ubuntu?
Upvotes: 4
Views: 8410
Reputation: 402493
You can associate the files with IDEA_DIR/bin/idea.sh
file. Or even better, use Tools
| Create Command-line Launcher...
Then you can open files in IDEA using the following command:
idea FileName.java
Upvotes: 9