Skip to main content
add line breaks between command example to help reading
Source Link
slm
  • 380k
  • 127
  • 793
  • 897

It forces applicationsforces applications to use the default language for outputuse the default language for output:

$ LC_ALL=es_ES man ¿Qué página de manual desea? $ LC_ALL=C man What manual page do you want? 

and forces sorting to be bytewiseforces sorting to be byte-wise:

$ LC_ALL=en_US sort <<< $'a\nb\nA\nB' a A b B $ LC_ALL=C sort <<< $'a\nb\nA\nB' A B a b 

It forces applications to use the default language for output:

$ LC_ALL=es_ES man ¿Qué página de manual desea? $ LC_ALL=C man What manual page do you want? 

and forces sorting to be bytewise:

$ LC_ALL=en_US sort <<< $'a\nb\nA\nB' a A b B $ LC_ALL=C sort <<< $'a\nb\nA\nB' A B a b 

It forces applications to use the default language for output:

$ LC_ALL=es_ES man ¿Qué página de manual desea? $ LC_ALL=C man What manual page do you want? 

and forces sorting to be byte-wise:

$ LC_ALL=en_US sort <<< $'a\nb\nA\nB' a A b B $ LC_ALL=C sort <<< $'a\nb\nA\nB' A B a b 
add line breaks between command example to help reading
Source Link

It forces applications to use the default language for output, and forces sortingforces applications to be bytewise.use the default language for output:

$ LC_ALL=es_ES man ¿Qué página de manual desea?   $ LC_ALL=C man What manual page do you want? 

and forces sorting to be bytewise:

$ LC_ALL=en_US sort <<< $'a\nb\nA\nB' a A b B   $ LC_ALL=C sort <<< $'a\nb\nA\nB' A B a b 

It forces applications to use the default language for output, and forces sorting to be bytewise.

$ LC_ALL=es_ES man ¿Qué página de manual desea? $ LC_ALL=C man What manual page do you want? $ LC_ALL=en_US sort <<< $'a\nb\nA\nB' a A b B $ LC_ALL=C sort <<< $'a\nb\nA\nB' A B a b 

It forces applications to use the default language for output:

$ LC_ALL=es_ES man ¿Qué página de manual desea?   $ LC_ALL=C man What manual page do you want? 

and forces sorting to be bytewise:

$ LC_ALL=en_US sort <<< $'a\nb\nA\nB' a A b B   $ LC_ALL=C sort <<< $'a\nb\nA\nB' A B a b 
Source Link

It forces applications to use the default language for output, and forces sorting to be bytewise.

$ LC_ALL=es_ES man ¿Qué página de manual desea? $ LC_ALL=C man What manual page do you want? $ LC_ALL=en_US sort <<< $'a\nb\nA\nB' a A b B $ LC_ALL=C sort <<< $'a\nb\nA\nB' A B a b