Apple Server Terminal
-
Apple Server Terminal 셋팅(lscolor, .bashrc, alias 설정 등)카테고리 없음 2008. 5. 5. 20:50
bashrc .bashrc 파일을 만들어줘도 로그인 시 적용 안됨 Sol> .bash_profile을 만들고, 여기서 .bashrc를 읽게 해야 함. .bash_profile을 다음과 같이 작성해 줌 1 # .bash_profile 2 3 # Get the aliases and functions 4 if [ -f ~/.bashrc ]; then 5 . ~/.bashrc 6 fi lscolor 처음 터미널에 접속하면 기본으로 ls 시 텍스트 색깔이 입혀져 있지 않음 Sol> ls -G 사용 .bashrc에 다음과 같이 alis 추가 해서 사용 1 # User specific aliases and functions 2 alias ls='ls -G' 3 alias lh='ls -Glh' 4 alias lha=..