Sometimes you need to create a new one or open an existing project in IntelliJ IDEA or any other integrated development environment. You can do it with terminal.
cd ~/Dev
mkdir new-project
idea ./new-project
But if you want to automate command line interaction, create a new Quick Action
script.
For example:
- set for "workflow receives current" value "folders";
- add a "Run Shell Script" step;
- write a code with
$1
as directory path; - set up pass input to "as arguments".
Save the script and check for a new action in folder's context menu.
Now you can open folder in IDE with two taps.