0

他们如何让 git、curl 或 heroku 从任何地方运行。例如,只需运行:

$curl

或者

$git

或者

$heroku
4

1 回答 1

0

shell 将在您的PATH.

要检查您的路径类型:

echo $PATH            # Print the path on screen

要查找在哪个目录中找到命令,请使用which(在 Linux 类型系统上):

which curl
于 2013-11-06T15:16:44.867 回答