본문 바로가기

OS/Linux

[Linux] bash_profile 샘플

# .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



'OS > Linux' 카테고리의 다른 글

[리눅스]포트오픈 확인용 echoserver & echoclient  (0) 2017.10.11
[리눅스] find 사용 예  (0) 2017.09.13
[Linux]Centos 7 네트워크 설정  (0) 2017.08.23
[Linux]ssh 아이피 허용  (0) 2017.08.21
[Linux]bash, .bash_profile 사용 예제  (0) 2017.06.23