1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-06-05 01:06:34 +02:00
Files
coreutils/tests/lang-default
T

9 lines
254 B
Bash
Raw Normal View History

2000-10-22 06:43:52 +00:00
#!/bin/sh
# Set locale-related environment variables so we get consistent
# message translations, time formats, sort orderings, etc.
2000-10-31 19:33:30 +00:00
for i in \
LANG LANGUAGE LC_ALL LC_COLLATE LC_CTYPE LC_MESSAGES LC_NUMERIC LC_TIME; do
eval "$i=; export $i"
done