본문 바로가기
Software Science

[Linux] 환경설정 (.bashrc)

by 101Architect 2018. 4. 1.

${HOME)/.bashrc

파일작성.

.vim 설정과 같이 현재 사용하고 있는 리눅스 shell 환경을 설정 할 수 있다.

# Default to human readable figures
# alias df='df -h'
# alias du='du -h'

# Misc :)
# alias less='less -r'                          # raw control characters
# alias whence='type -a'                        # where, of a sort

alias grep='grep --color'                     # show differences in colour

# Some shortcuts for different directory listings
alias ls='ls -hF --color=tty'                 # classify files in colour
alias dir='ls --color=auto --format=vertical'
alias vdir='ls --color=auto --format=long'
alias ll='ls -l'                              # long list
alias la='ls -A'                              # all but . and ..
alias l='ls -CF'                              #
alias vi=/cygdrive/c/progra~1/Vim/vim73/gvim.exe
# Functions
# #########

샘플 .bashrc 파일

http://wiki.kldp.org/HOWTO/html/Adv-Bash-Scr-HOWTO/sample-bashrc.html

 

그밖에 다른 linux 환경 설정에 참고 하면 좋다.

링크 : http://www.delicious.com/mwultong/linux 

 

반응형

'Software Science' 카테고리의 다른 글

[Linux] gvim 환경 설정 하기  (0) 2018.04.01
[Linux] grep, find 명령어  (0) 2018.04.01
[Linux] Make 파일  (0) 2018.04.01
[Linux] vi&vim 편집기 명령어  (0) 2018.04.01
[Linux] path 확인 별칭  (0) 2018.04.01