dawez
dawez

Reputation: 2724

IntelliJ: Ubuntu/linux how to open file with IntelliJ from shell

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

Answers (1)

CrazyCoder
CrazyCoder

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

Related Questions