.bashrc 별칭이 작동하지 않습니다.

.bashrc 별칭이 작동하지 않습니다.

다음과 같이 파일에 몇 가지 별칭을 설정했습니다 .bashrc.

alias ras='rails server'
alias res='redis-server'
alias rc='rails console'
alias be='bundle exec'

# git alias's are as follows
alias gs='git status'
alias gc='git commit'
alias go='git checkout'
alias ga='git add -p'

하지만 시도해 보면 gsGhostscript가 열리고 go master반환됩니다 .

:~/Work/boogle[master]$ go master
The program 'go' is currently not installed.  You can install it by typing:
sudo apt-get install golang-go

우분투 12.04 LTS를 사용하고 있습니다. 별칭을 작동시키려면 어떻게 해야 합니까?

관련 정보