OS/Linux
[Linux] bash_profile 샘플
1125521101
2017. 8. 23. 16:50
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
alias vi='vim'
alias ll='ls -al'
alias l='ls -l'
PATH=$PATH:$HOME/.local/bin:$HOME/bin
export PATH
export VISUAL=/usr/bin/vim
export LANG=ko_KR.UTF-8