현재 쉘에서 LANG 변수를 변경해야합니다.
놓다
export LANG=en_US.UTF-8
쉘 rc 파일에서 (bash의 경우 ~/.bashrc
) 터미널 세션을 다시 시작하십시오 (또는을 사용하여 rc 파일을 한 번 더 소스 source ~/.bashrc
하거나 bash를 다시 시작하십시오 exec bash
)
전에이 로케일을 생성해야합니다.
또한 사용할 수 있습니다 export LANG=C
.
또한 다른 LANG 변수가 있습니다 (man bash의).
LANG Used to determine the locale category for any category not
specifically selected with a variable starting with LC_.
LC_ALL This variable overrides the value of LANG and any other LC_
variable specifying a locale category.
LC_COLLATE
This variable determines the collation order used when sorting
the results of pathname expansion, and determines the behavior
of range expressions, equivalence classes, and collating
sequences within pathname expansion and pattern matching.
LC_CTYPE
This variable determines the interpretation of characters and
the behavior of character classes within pathname expansion and
pattern matching.
LC_MESSAGES
This variable determines the locale used to translate double-
quoted strings preceded by a $.
LC_NUMERIC
This variable determines the locale category used for number
formatting.
export LANGUAGE=English