Open project from terminal without interactive mode

Hi when I open a project by `phpstorm <project folder name>` command from the terminal, it enters a interactive mode, tracking some logs in the foreground. If I enter `ctrl C` the interactive session is terminalted and the PHPStorm quited as well.  How can I get rid of the interactive session? 

0

Hi,

You may want to use a command-line launcher instead:
https://www.jetbrains.com/help/idea/working-with-the-ide-features-from-command-line.html

It is even easier with the JetBrains Toolbox:
https://www.jetbrains.com/toolbox-app/
https://www.jetbrains.com/help/idea/working-with-the-ide-features-from-command-line.html#toolbox

 

Also, as a quick workaround, you could use a construction like 'phpstorm my_project >/dev/null 2>&1 &' – that should launch IDE in a background and hide the output.

1

请先登录再写评论。