如何找到" open"的可执行文件Mac中的命令?

时间:2015-06-27 00:23:15

标签: macos google-chrome path terminal environment-variables

我想通过mac终端打开我的许多程序,因为我经常使用它。例如,我希望能够推出" chrome"通过键入open chrome从Mac OSx终端输入。

当然,这只有在环境变量path知道在哪里找到该程序的可执行文件时才有效。我已经尝试使用以下方法搜索应用程序的可执行文件(例如chrome):

find . -iname "*chrome*" 

但结果都不起作用(当然也有很多结果)。所以,我想知道什么是最好的方法

1)找到要添加到PATH环境变量的可执行文件 要么 2)通过其他方法启动应用程序

感谢。

1 个答案:

答案 0 :(得分:3)

一般来说,就我所见,您几乎可以启动任何类似的应用程序:

# binary file:
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome

# open .app:
open /Applications/Google\ Chrome.app/

# binary + variable:
appName="Google Chrome"
"/Applications/$appName.app/Contents/MacOS/$appName"

# open + variable:
appName="Google Chrome"
open "/Applications/$appName.app/"

希望这有帮助! :)