OSDN Git Service

LDP: Update original to LDP v3.79
[linuxjm/LDP_man-pages.git] / original / man1 / locale.1
1 .\" Copyright (C) 2014 Michael Kerrisk <mtk.manpages@gmail.com>
2 .\"
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
7 .\"
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
12 .\"
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein.  The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\" %%%LICENSE_END
24 .\"
25 .TH LOCALE 1 2014-05-28 "Linux" "Linux User Manual"
26 .SH NAME
27 locale \- get locale-specific information
28 .SH SYNOPSIS
29 .nf
30 .BR locale " [\fIoption\fP]"
31 .BR locale " [\fIoption\fP] \-a"
32 .BR locale " [\fIoption\fP] \-m"
33 .BR locale " [\fIoption\fP] \fIname\fP..."
34 .fi
35 .SH DESCRIPTION
36 The
37 .B locale
38 command displays information about the current locale, or all locales,
39 on standard output.
40
41 When invoked without arguments,
42 .B locale
43 displays the current locale settings for each locale category (see
44 .BR locale (5)),
45 based on the settings of the environment variables that control the locale
46 (see
47 .BR locale (7)).
48
49 If either the
50 .B \-a
51 or the
52 .B \-m
53 option (or one of their long-format equivalents) is specified,
54 the behavior is as follows:
55 .TP
56 .BR \-a ", " \-\-all\-locales
57 Display a list of all available locales.
58 The
59 .B -v
60 option causes the
61 .B LC_IDENTIFICATION
62 metadata about each locale to be included in the output.
63 .TP
64 .BR \-m ", " \-\-charmaps
65 Display the available charmaps (character set description files).
66 .PP
67 The
68 .B locale
69 command can also be provided with one or more arguments,
70 which are the names of locale keywords (for example,
71 .IR date_fmt ,
72 .IR ctype-class-names ,
73 .IR yesexpr ,
74 or
75 .IR decimal_point )
76 or locale categories (for example,
77 .BR LC_CTYPE
78 or
79 .BR LC_TIME ).
80 For each argument, the following is displayed:
81 .IP * 3
82 For a locale keyword, the value of that keyword to be displayed.
83 .IP *
84 For a locale category,
85 the values of all keywords in that category are displayed.
86 .PP
87 When arguments are supplied, the following options are meaningful:
88 .TP
89 .BR \-c ", " \-\-category\-name
90 For a category name argument,
91 write the name of the locale category
92 on a separate line preceding the list of keyword values for that category.
93
94 For a keyword name argument,
95 write the name of the locale category for this keyword
96 on a separate line preceding the keyword value.
97
98 This option improves readability when multiple name arguments are specified.
99 It can be combined with the
100 .B \-k
101 option.
102 .TP
103 .BR \-k ", " \-\-keyword\-name
104 For each keyword whose value is being displayed,
105 include also the name of that keyword,
106 so that the output has the format:
107
108     \fIkeyword\fP="\fIvalue\fP"
109 .PP
110 The
111 .B locale
112 command also knows about the following options:
113 .TP
114 .BR \-v ", " \-\-verbose
115 Display additional information for some command-line option and argument
116 combinations.
117 .TP
118 .BR \-? ", " \-\-help
119 Display a summary of command-line options and arguments and exit.
120 .TP
121 .BR \-\-usage
122 Display a short usage message and exit.
123 .TP
124 .BR \-V ", " \-\-version
125 Display the program version and exit.
126 .SH FILES
127 .TP
128 .I /usr/lib/locale/locale-archive
129 Usual default locale archive location.
130 .TP
131 .I /usr/share/i18n/locales
132 Usual default path for locale definition files.
133 .SH CONFORMING TO
134 POSIX.1-2001, POSIX.1-2008.
135 .SH EXAMPLE
136 .nf
137 $ \fBlocale\fP
138 LANG=en_US.UTF\-8
139 LC_CTYPE="en_US.UTF\-8"
140 LC_NUMERIC="en_US.UTF\-8"
141 LC_TIME="en_US.UTF\-8"
142 LC_COLLATE="en_US.UTF\-8"
143 LC_MONETARY="en_US.UTF\-8"
144 LC_MESSAGES="en_US.UTF\-8"
145 LC_PAPER="en_US.UTF\-8"
146 LC_NAME="en_US.UTF\-8"
147 LC_ADDRESS="en_US.UTF\-8"
148 LC_TELEPHONE="en_US.UTF\-8"
149 LC_MEASUREMENT="en_US.UTF\-8"
150 LC_IDENTIFICATION="en_US.UTF\-8"
151 LC_ALL=
152
153 $ \fBlocale date_fmt\fP
154 %a %b %e %H:%M:%S %Z %Y
155
156 $ \fBlocale \-k date_fmt\fP
157 date_fmt="%a %b %e %H:%M:%S %Z %Y"
158
159 $ \fBlocale \-ck date_fmt\fP
160 LC_TIME
161 date_fmt="%a %b %e %H:%M:%S %Z %Y"
162
163 $ \fBlocale LC_TELEPHONE\fP
164 +%c (%a) %l
165 (%a) %l
166 11
167 1
168 UTF\-8
169
170 $ \fBlocale \-k LC_TELEPHONE\fP
171 tel_int_fmt="+%c (%a) %l"
172 tel_dom_fmt="(%a) %l"
173 int_select="11"
174 int_prefix="1"
175 telephone\-codeset="UTF\-8"
176 .fi
177
178 The following example compiles a custom locale from the
179 .I ./wrk
180 directory with the
181 .BR localedef (1)
182 utility under the
183 .I $HOME/.locale
184 directory, then tests the result with the
185 .BR date (1)
186 command, and then sets the environment variables
187 .B LOCPATH
188 and
189 .B LANG
190 in the shell profile file so that the custom locale will be used in the
191 subsequent user sessions:
192
193 .nf
194 $ \fBmkdir -p $HOME/.locale\fP
195 $ \fBI18NPATH=./wrk/ localedef -f UTF-8 -i fi_SE $HOME/.locale/fi_SE.UTF-8\fP
196 $ \fBLOCPATH=$HOME/.locale LC_ALL=fi_SE.UTF-8 date\fP
197 $ \fBecho "export LOCPATH=\\$HOME/.locale" >> $HOME/.bashrc\fP
198 $ \fBecho "export LANG=fi_SE.UTF-8" >> $HOME/.bashrc\fP
199 .fi
200 .SH SEE ALSO
201 .BR localedef (1),
202 .BR charmap (5),
203 .BR locale (5),
204 .BR locale (7)
205 .SH COLOPHON
206 This page is part of release 3.79 of the Linux
207 .I man-pages
208 project.
209 A description of the project,
210 information about reporting bugs,
211 and the latest version of this page,
212 can be found at
213 \%http://www.kernel.org/doc/man\-pages/.