LC_ALL = C 의 의미

4055 단어 Linux
원본 주소:http://blog.chinaunix.net/uid-74180-id-2055792.html
 
많은 셸 스 크 립 트 에서 우 리 는 어떤 명령 의 앞 에 'LC ALL = C' 라 는 말 이 있 는 것 을 자주 볼 수 있다.
SAR_CMD="LC_ALL=C sar -u -b 1 5 | grep -i average "
이것 은 도대체 무슨 뜻 입 니까?
LC_ALL = C 는 명령 이 올 바 르 게 실 행 될 수 있 도록 모든 로 컬 설정 을 제거 하기 위 한 것 이다.
---------------------------------
댓 글:http://www.linuxsky.org/doc/newbie/200707/84.html
Linux 에서 locale 을 통 해 프로그램 이 실행 되 는 서로 다른 언어 환경 을 설정 하고 locale 은 ANSI C 에서 지원 합 니 다.locale 의 명명 규칙 은 < 언어 > <지역 >. < 문자 집합 인 코딩 >, 예 를 들 어 zhCN. UTF - 8, zh 는 중국 어 를 대표 하고 CN 은 대륙 지역 을 대표 하 며 UTF - 8 은 문자 집합 을 나타 낸다.locale 환경 에서 하나의 변 수 는 국제 화 환경 에서 의 서로 다른 설정 을 대표 한다. 1.    LC_COLLATE 는 이 환경의 정렬 과 비교 규칙 을 정의 합 니 다.
2.    LC_CTYPE 는 문자 분류 와 문자열 처리 에 사용 되 며 문자 인 코딩, 문자 가 단일 바이트 인지 다 중 바이트 인지 인쇄 하 는 방법 등 모든 문자 의 처리 방식 을 제어 합 니 다.가장 중요 한 환경 변수 입 니 다.
3.    LC_MONETARY 화폐 형식
4.    LC_NUMERIC 비 화폐 디지털 디 스 플레이 형식
5.    LC_TIME 시간 과 날짜 형식
6.    LC_MESSAGES 가 정 보 를 알려 주 는 언어 입 니 다.또 하나의 LANGUAGE 인자 가 있 습 니 다. LCMESSAGES 는 비슷 하지만 이 인자 가 설정 되면 LCMESSAGES 인 자 는 유효 하지 않 습 니 다.LANGUAGE 인 자 는 LANGUANE = 'zh CN. GB 18030: zh CN. GB 2312: zh CN' 과 같은 다양한 언어 정 보 를 동시에 설정 할 수 있 습 니 다.
7.    LANGLC_*의 기본 값, 최저 등급 의 설정 입 니 다. 만약 LC *설정 이 없 으 면 이 값 을 사용 합 니 다.LC 와 유사ALL。
8.    LC_ALL 은 매크로 입 니 다. 이 값 이 설정 되 어 있 으 면 모든 LC * 를 덮어 씁 니 다.의 설정 값 입 니 다.LANG 의 값 은 이 매크로 의 영향 을 받 지 않 습 니 다.
C "는 시스템 의 기본 locale 입 니 다." POSIX "는" C "의 별명 입 니 다. 따라서 시스템 을 새로 설 치 했 을 때 기본 locale 은 C 나 POSIX 입 니 다.
"POSIX" :Specifies the minimal environment for C-language translation called the POSIX locale. If setlocale() is not invoked, the POSIX locale is the default
"C"  Equivalent to "POSIX".-----------------------------------
How to view the current locale setting?
# locale
How to change the locale setting?
* Via the CDE login locale
* As a user-specific locale
* As a system default locale
To change the current locale setting, first confirm that the desired locale is
installed on the system with:
# locale -a
de
en_AU
en_CA
en_UK
C
If the desired locale is not in the list, you will need to install the
appropriate packages for that locale. See the Note below for more information
about locale packages.
How to change the locale via the CDE login locale?
On the CDE login banner:
Choose options - languages
Under languages - choose the new locale
The CDE banner will re-cycle and then you can login to the selected locale.
NOTE: If a user has a different default locale set in their environment, the
that locale setting will override the selected CDE login locale.
How to set a user-specific locale?
Note:
For sh, ksh:
# LANG=C; export LANG
# LC_ALL=C; export LC_ALL
For csh:
# setenv LANG C
# setenv LC_ALL C
Note: To set a default locale for a user's environment, set the LANG or LC_*
variables in a user's shell intialization file such as $HOME/.profile or
$HOME/.cshrc
How to change the locale by setting the system default locale?
LANG=C
LC_ALL=C

Example from the /etc/default/init file:

# Lines of this file should be of the form VAR=value, where VAR is one of
# TZ, LANG, or any of the LC_* environment variables.
LANG=C
LC_ALL=C

Note: The system must be rebooted after making changes to the
/etc/default/init file in order for the changes to take effect.

How to verify the locale setting?
After setting or changing the locale, verify that the locale is set correctly:
Check if the locale is set correctly by running the locale command without any
options:
# locale
LANG=C
LC_CTYPE= "C"
LC_NUMERIC= "C"
LC_TIME= "C"
LC_COLLATE= "C"
LC_MONETARY= "C"
LC_MESSAGES= "C"
LC_ALL=C

좋은 웹페이지 즐겨찾기