Added mentions for interesting projects
[sixth.git] / tools / open with IntelliJ IDEA
1 #!/bin/bash
2
3 #
4 # This is a helper bash script that starts IntelliJ with the current project.
5 # Script is written is such a way that you can simply click on it in file
6 # navigator to run it.
7 #
8 #
9 # Script assumes:
10 #
11 #    + GNU operating system
12 #    + IntelliJ is installed and commandline launcher "idea" is enabled.
13 #
14
15 cd "${0%/*}"
16 cd ..
17
18 setsid idea . &>/dev/null