문제

I would like to set the same value to the locale environment variables: LC_CTYPE, LC_ALL, LANG.

I want to be able to set it directly on the interactive bash shell, something like this:

$ export LC_CTYPE=$LANG=$LC_ALL=C

This answer Assign same value to multiple variables shows how to do it in a script, but not in the interactive shell.

도움이 되었습니까?

해결책 2

The reference provided by you isn't a shell reference, it's a PHP example.

In shell, one way would be to use a loop:

for i in FOO BAR BAZ; do
  export $i=value
done

다른 팁

export {LC_CTYPE,LANG,LC_ALL}=C
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top