Linux的shell下实现唤起idea并打开当前目录的项目

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
# idea
idea() {
nohup your_path/bin/idea.sh "$(pwd)" > /dev/null 2>&1 &
}
# idea idea() { nohup your_path/bin/idea.sh "$(pwd)" > /dev/null 2>&1 & }
# idea
idea() {
  nohup your_path/bin/idea.sh "$(pwd)" > /dev/null 2>&1 &
}

 

Leave a Reply

Your email address will not be published. Required fields are marked *