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

After this question, it seems that you can open the file from the shell from IntelliJ to MAC.

IntelliJ: how to open files in an existing IntelliJ from the command line

Is there something similar for Ubuntu?

+4
source share
1 answer

You can link the files to the IDEA_DIR/bin/idea.sh . Or even better, use Tools | Create a command line launcher ...

You can then open the files in IDEA using the following command: idea FileName.java

+8
source

Source: https://habr.com/ru/post/1403627/


All Articles