Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的 ubuntu 中安装了 Intellij Idea。我从终端运行它。
首先,我这样做,将 PATH 更改为 .bashrc,并获取它。
但它不起作用。
而且我确定目录是正确的。现在我在 .bashrc 中写了一个别名,它可以工作。
alias runidea='cd $THEDIR ; sh idea.sh'
我回显 PATH 它是正确的。但如果我输入sh idea.sh
sh idea.sh
它告诉我sh:Can't open idea.sh
sh:Can't open idea.sh
尝试通过idea.sh在 shell 中输入来运行它(不带sh)
idea.sh
sh
$ idea.sh不喜欢$ sh idea.sh
$ idea.sh
$ sh idea.sh
试试这个
alias runidea='~/idea-IU-111.277/bin/idea.sh'
现在创建了别名,然后运行以下命令
runidea
idea-IU-111.277 可以替换为您的 intellij idea 文件夹