为什么我得到“-bash:'alias:command not found”,但它在那里......?

时间:2013-11-20 11:34:22

标签: macos bash terminal

我不明白为什么我的别名不起作用,任何想法的人?我想用'pro'作为别名 谢谢! ^ _ ^)

这是我的bash文件的样子:

export PATH="/usr/local/bin:$PATH"

[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*


# Git branch in prompt.
parse_git_branch() {
    git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
export PS1="\u@\h \W\[\033[32m\]\$(parse_git_branch)\[\033[00m\] $ "

#******ALIAS FOR TEALEAF_COURSE3**********************

alias pro='cd /Users/yoniPacheko/Documents/ruby/RnR/third_course_0/projects '

1 个答案:

答案 0 :(得分:0)

好吧,我一直在寻找.bash_profile ,但我已经zsh作为一个shell ,所以我看错了地方。

正确的位置是.zshrc,对于那些没有运行bash-shell并且想要制作别名的人

但是感谢你们的投入社区,我终于得到了这张照片。

:)