'환경변수'에 해당되는 글 2

  1. 2009.05.17 유닉스 환경변수 설정
  2. 2009.04.14 Command Line Interface

유닉스 환경변수 설정

/etc/profile 이 적용된 후에 USER_HOME/.profile 이 적용된다.
root 사용자는 /.profile 이 사용된다.

profile 수정후에 로그아웃을 하고 다시 로그인하면 적용되지만 다음 명령으로 바로 적용이 가능하다.
# source /etc/profile //Linux
# . /etc/profile //Unix

[todo] profile 은 어떤 쉘에서 사용가능? Command Line Interface 와도...

profile 바로 적용하기
source .profile, ./.profile 둘다 안됨...1구매에서


Command Line Interface

- 명령 히스토리
  • bash, tcsh, Windows Command : 아래/위 화살표
  • ksh : ESC-K, J(vi), Ctrl+N, P(emacs)
  • csh은 이 기능이 없으므로 tcsh 이용하면 됨.
    또는 history를 사용한다.
    set history=20
    alias h history

- 방금 사용한 명령 실행

- 자동 완성
  • sh
    # cd mESC
  • bash : Tab
  • ksh : cd 명령에 * 사용 가능
    # set -o //현재 설정 확인
    # set -o vi //export EDITOR=vi, export VISUAL=vi 와 동일하다고 하던데.....EDITOR=vi 하면 vi 가 온으로 되네
    # cd mESC-\ //vi
    # set -o emacs
    # cd mESC+ESC //emacs
  • csh
    # set filec
    # cd mESC
  • tcsh : Tab, ESC, cd 명령에 * 사용 가능
  • Windows Command : Tab, cd 명령에 * 사용 가능


- 파일 리스팅

  • sh
    ???# cd mESC
  • bash : Tab-Tab ???
  • ksh
    # cd mESC-= //vi

- 환경변수 설정
  • sh, ksh
    # export LANG=ko
  • csh
    # setenv LANG ko
  • Windows Command
    > set LANG=ko