Heroku Toolbelt:-bash:别名:已添加:未找到
Heroku Toolbelt: -bash: alias: Added: not found
我今天注册了 Heroku 帐户,并在我的 Mac (OSX 10.10.1) 上安装了 Toolbelt。
当我打开我的终端时,我得到了这个:
Last login: Sun Jan 4 21:50:53 on ttys000
-bash: alias: Added: not found
-bash: alias: by: not found
-bash: alias: the: not found
-bash: alias: Heroku: not found
-bash: alias: Toolbelt: not found
Zulhilmis-MBP:~ zulhilmizainudin$
这是我的 .bash_profile
:
export PATH=/usr/local/git/bin/:$PATH
export PATH=/Applications/android_sdk/tools:$PATH
export ANDROID="/Applications/android_sdk/tools"
export JAVA_HOME=$(/usr/libexec/java_home)
export PATH=/Applications/MAMP/bin/php/php5.6.2/bin:$PATH
alias php='/Applications/MAMP/bin/php/php5.6.2/bin/php'### Added by the Heroku Toolbelt
export PATH="/usr/local/heroku/bin:$PATH"
我的问题:
- 如何修复终端内的
not found
错误?
- 我的
.bash_profile
正确吗?最近,我在该文件中添加了很多新行,但我对 .bash_profile
这个东西一无所知。当我遇到问题时,我只是从网上复制粘贴。如果看起来不对,能否请您提出更正建议 .bash_profile
?
更改线路:
alias php='/Applications/MAMP/bin/php/php5.6.2/bin/php'### Added by the Heroku Toolbelt
至:
alias php="/Applications/MAMP/bin/php/php5.6.2/bin/php"
### Added by the Heroku Toolbelt
你的 .bash_profile
看起来不错。您唯一可以做的改进是将所有路径线合并为一条,但这并不是那么重要。
我今天注册了 Heroku 帐户,并在我的 Mac (OSX 10.10.1) 上安装了 Toolbelt。
当我打开我的终端时,我得到了这个:
Last login: Sun Jan 4 21:50:53 on ttys000
-bash: alias: Added: not found
-bash: alias: by: not found
-bash: alias: the: not found
-bash: alias: Heroku: not found
-bash: alias: Toolbelt: not found
Zulhilmis-MBP:~ zulhilmizainudin$
这是我的 .bash_profile
:
export PATH=/usr/local/git/bin/:$PATH
export PATH=/Applications/android_sdk/tools:$PATH
export ANDROID="/Applications/android_sdk/tools"
export JAVA_HOME=$(/usr/libexec/java_home)
export PATH=/Applications/MAMP/bin/php/php5.6.2/bin:$PATH
alias php='/Applications/MAMP/bin/php/php5.6.2/bin/php'### Added by the Heroku Toolbelt
export PATH="/usr/local/heroku/bin:$PATH"
我的问题:
- 如何修复终端内的
not found
错误? - 我的
.bash_profile
正确吗?最近,我在该文件中添加了很多新行,但我对.bash_profile
这个东西一无所知。当我遇到问题时,我只是从网上复制粘贴。如果看起来不对,能否请您提出更正建议.bash_profile
?
更改线路:
alias php='/Applications/MAMP/bin/php/php5.6.2/bin/php'### Added by the Heroku Toolbelt
至:
alias php="/Applications/MAMP/bin/php/php5.6.2/bin/php"
### Added by the Heroku Toolbelt
你的 .bash_profile
看起来不错。您唯一可以做的改进是将所有路径线合并为一条,但这并不是那么重要。