New paste Repaste Download
On a new Terminal:
```
> set | grep LC_
LC_COLLATE=en.UTF-8
LC_CTYPE=en.UTF-8
LC_MESSAGES=en.UTF-8
LC_MONETARY=en.UTF-8
LC_NUMERIC=en.UTF-8
LC_TIME=en.UTF-8
```
default/fallback:
```
> unset LANGUAGE && unset LC_ALL && unset LC_TIME
> git bla
git: 'bla' is not a git command. See 'git --help'.
The most similar command is
        blame
```
LC_TIME is the only LC_* envar besides LC_ALL that changes the language in output:
```
> LC_TIME=es git bla
git: 'bla' no es un comando de git. Mira 'git --help'.
El comando más similar es
        blame
```
LC_ALL overrides it:
```
> LC_ALL=en LC_TIME=es git bla
git: 'bla' is not a git command. See 'git --help'.
The most similar command is
        blame
```
And LANGUAGE overpowers them both:
```
> LANGUAGE=es LC_ALL=en LC_TIME=es git bla
git: 'bla' no es un comando de git. Mira 'git --help'.
El comando más similar es
        blame
```
Filename: None. Size: 944b. View raw, , hex, or download this file.

This paste expires on 2025-03-31 08:05:58.912576. Pasted through web.