-
-
Save libratiger/b8ff8f6a9d01e4634bcf09d9d98d80ce to your computer and use it in GitHub Desktop.
Open IDEA applications based on project type from the command line!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
IDEA='' | |
PROJECT_DIR='' | |
function main() { | |
openIdea "$@" | |
} | |
function openIdea() { | |
if [ -f "$1" ]; then | |
openByFile | |
fi | |
openWithDirectory "$1" | |
} | |
function openByFile() { | |
if [ "$1" ~= '.php' ]; then | |
IDEA=$(getPhpStormApp) | |
fi | |
if [ "$1" ~= '.js' ] || [ "$1" ~= '.css' ]; then | |
IDEA=$(getWebStormApp) | |
fi | |
open -a "$IDEA" "$1" | |
} | |
function openWithDirectory() { | |
PROJECT_DIR=$(getProjectDirectory) | |
detectProjectIdeaApplication | |
if [ -d "${PROJECT_DIR}/.idea" ]; then | |
echo "opening via the .idea dir" | |
open -a "$IDEA" ${PROJECT_DIR} | |
elif [ -f "${PROJECT_DIR}/*.ipr" ]; then | |
echo "opening via the project file" | |
open -a "$IDEA" $(ls -1d *.ipr | head -n1) | |
elif [ -f "${PROJECT_DIR}/pom.xml" ]; then | |
open -a "$IDEA" "${PROJECT_DIR}/pom.xml" | |
elif [ -f "${PROJECT_DIR}/build.sbt" ]; then | |
open -a "$IDEA" "${PROJECT_DIR}/build.sbt" | |
else | |
open -a "$IDEA" "${PROJECT_DIR}" | |
fi | |
} | |
function getProjectDirectory() { | |
if [ -d "$1" ]; then | |
ls -1d "$1" | head -n1 | |
fi | |
if [ -z "$1" ]; then | |
pwd | |
fi | |
} | |
function detectProjectIdeaApplication() { | |
if [ -f "${PROJECT_DIR}/composer.json" ]; then | |
IDEA=$(getPhpStormApp) | |
return 0 | |
fi | |
if [ -f "${PROJECT_DIR}/package.json" ]; then | |
IDEA=$(getWebStormApp) | |
return 0 | |
fi | |
IDEA=$(getIntelliJ) | |
} | |
function getIntelliJ() { | |
ls -1d /Applications/IntelliJ\ * | tail -n1 | |
} | |
function getPhpStormApp() { | |
ls -1d /Applications/PhpStorm* | tail -n1 | |
} | |
function getWebStormApp() { | |
ls -1d /Applications/WebStorm* | tail -n1 | |
} | |
main "$@" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment