From: Svjatoslav Agejenko Date: Sat, 3 Aug 2019 09:16:50 +0000 (+0300) Subject: Improved IntelliJ startup script. X-Git-Tag: sixth-3d-1.2~17 X-Git-Url: http://www2.svjatoslav.eu/gitweb/?p=sixth-3d.git;a=commitdiff_plain;h=d200d943ac7263eea16892cd3b79dcb7236b2d4f Improved IntelliJ startup script. --- diff --git a/tools/open with IntelliJ IDEA b/tools/open with IntelliJ IDEA index 1f82875..de9bae5 100755 --- a/tools/open with IntelliJ IDEA +++ b/tools/open with IntelliJ IDEA @@ -1,6 +1,18 @@ #!/bin/bash -cd "${0%/*}" +# +# This is a helper bash script that starts IntelliJ with the current project. +# Script is written is such a way that you can simply click on it in file +# navigator to run it. +# +# +# Script assumes: +# +# + GNU operating system +# + IntelliJ is installed and commandline launcher "idea" is enabled. +# +cd "${0%/*}" cd .. -idea . + +setsid idea . &>/dev/null