2011. 6. 30. 13:36
쉘(shell) 에서 ls 할때 컬러(color) 없애기. I.lib()/I.lib(Unix)2011. 6. 30. 13:36
..
..
..
.
Q. How do I turn on or off file name colors in bash shell?
A. Most modern Linux distro comes with alias that defines colors for your file. However ls command is responsible for displaying color on screen for files, directories and other object.
By default, color is not used to distinguish types of files. You need to pass --color option to ls command.
Task: Turn off colors
Type the following command
$ ls --color=none
Or just remove alias with unalias command:
$ unalias ls
Task: Turn on colors
Use any of the following command:
$ ls --color=auto
$ ls --color=tty
'I.lib() > I.lib(Unix)' 카테고리의 다른 글
스크립트로 날짜 계산하여 파일 삭제하기. (find 명령어) (3) | 2011.10.05 |
---|---|
[리눅스-레드헷 계열] 방화벽 포트 열기 (iptables 설정: 무수한 삽질끝 나온 결실) (8) | 2011.08.02 |
리눅스 charset 확인 및 변경 (1) | 2011.06.24 |
리눅스 사용자 계정 생성 (0) | 2011.06.24 |
unix time setting (유닉스 시간 변경 및 세팅) (1) | 2011.06.21 |