OSDN Git Service

Convert release and draft pages to UTF-8.
[linuxjm/jm.git] / manual / util-linux / draft / man1 / hexdump.1
1 .\" Copyright (c) 1989, 1990, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. All advertising materials mentioning features or use of this software
13 .\"    must display the following acknowledgement:
14 .\"     This product includes software developed by the University of
15 .\"     California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\"    may be used to endorse or promote products derived from this software
18 .\"    without specific prior written permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .\"     from: @(#)hexdump.1     8.2 (Berkeley) 4/18/94
33 .\"
34 .\" Japanese Version Copyright (c) 2001-2002 Yuichi SATO
35 .\"         all rights reserved.
36 .\" Translated Tue 11 Jan 1994
37 .\"         by NetBSD jman proj. <jman@spa.is.uec.ac.jp>
38 .\" Updated Sun Jan 14 00:49:38 JST 2001
39 .\"         by Yuichi SATO <sato@complex.eng.hokudai.ac.jp>
40 .\" Updated Sun Mar 24 11:54:42 JST 2002
41 .\"         by Yuichi SATO <ysato@h4.dion.ne.jp>
42 .\"
43 .Dd April 18, 1994
44 .Dt HEXDUMP 1
45 .Os
46 .\"O .Sh NAME
47 .Sh 名前
48 .Nm hexdump
49 .\"O .Nd ascii, decimal, hexadecimal, octal dump
50 .Nd ASCII, 10 進, 16 進, 8 進でダンプする
51 .\"O .Sh SYNOPSIS
52 .Sh 書式
53 .\"O .Nm ""
54 .Nm
55 .Op Fl bcCdovx
56 .Bk -words
57 .Op Fl e Ar format_string
58 .Ek
59 .Bk -words
60 .Op Fl f Ar format_file
61 .Ek
62 .Bk -words
63 .Op Fl n Ar length
64 .Ek
65 .Bk -words
66 .Op Fl s Ar skip
67 .Ek
68 .Ar file ...
69 .\"O .Sh DESCRIPTION
70 .Sh 説明
71 .\"O The hexdump utility is a filter which displays the specified files, or
72 .\"O the standard input, if no files are specified, in a user specified
73 .\"O format.
74 hexdump ユーティリティは、指定したファイルを
75 ユーザーが指定したフォーマットで表示するフィルタである。
76 ファイルが指定されていない場合は、標準入力を読み込んでフォーマットする。
77 .Pp
78 .\"O The options are as follows:
79 オプションとしては以下のものがある:
80 .Bl -tag -width Fl
81 .It Fl b
82 .\"O .Em One-byte octal display .
83 .\"O Display the input offset in hexadecimal, followed by sixteen
84 .\"O space-separated, three column, zero-filled, bytes of input data,
85 .\"O in octal, per line.
86 .Em 1 バイト単位の 8 進数表示。
87 入力オフセットを 16 進数で表示し、
88 その後に、入力データ 1 バイトずつを
89 0 で字詰めした 3 桁の 8 進数で表現し、
90 それを 1 行当たり 16 個、空白で区切って表示する。
91 .It Fl c
92 .\"O .Em One-byte character display .
93 .\"O Display the input offset in hexadecimal, followed by sixteen
94 .\"O space-separated, three column, space-filled, characters of input
95 .\"O data per line.
96 .Em 1 バイト単位のキャラクタ表示。
97 入力オフセットを 16 進数で表示し、
98 その後に、入力データのキャラクタを
99 空白で字詰めした 3 桁 (の ASCII 文字) で表現し、
100 それを 1 行当たり 16 個、空白で区切って表示する。
101 .It Fl C
102 .\"O .Em Canonical hex+ASCII display .
103 .\"O Display the input offset in hexadecimal, followed by sixteen
104 .\"O space-separated, two column, hexadecimal bytes, followed by the
105 .\"O same sixteen bytes in %_p format enclosed in ``|'' characters.
106 .Em 標準的な 16進数 + ASCII での表示。
107 入力オフセットを 16 進数で表示し、
108 その後に、入力データのキャラクタを 2 桁の 16 進数で表現し、
109 それを 1 行当たり 16 個、空白で区切って表示する。
110 その後に、``|'' で囲まれた中に同じ 16 バイトを
111 %_p フォーマットで表示する。
112 .It Fl d
113 .\"O .Em Two-byte decimal display .
114 .\"O Display the input offset in hexadecimal, followed by eight
115 .\"O space-separated, five column, zero-filled, two-byte units
116 .\"O of input data, in unsigned decimal, per line.
117 .Em 2 バイト単位の 10 進数表示。
118 入力オフセットを 16 進数で表示し、
119 その後に、入力データ 2 バイト単位を
120 0 で字詰めした 5 桁の符号なし 10 進数で表現し、
121 それを 1 行当たり 8 個、空白で区切って表示する。
122 .It Fl e Ar format_string 
123 .\"O Specify a format string to be used for displaying data.
124 データを表示するために使われるフォーマット文字列を指定する。
125 .It Fl f Ar format_file 
126 .\"O Specify a file that contains one or more newline separated format strings.
127 .\"O Empty lines and lines whose first non-blank character is a hash mark
128 .\"O .Pf ( Cm \&# )
129 .\"O are ignored.
130 1 個以上のフォーマット文字列 (改行で区切る) の書かれたファイルを指定する。
131 空行、または空白を除いた最初の文字がハッシュマーク
132 .Pf ( Cm \&# )
133 である行は無視される。
134 .It Fl n Ar length 
135 .\"O Interpret only
136 .\"O .Ar length
137 .\"O bytes of input.
138 入力の
139 .Ar length
140 バイト分だけを処理する。
141 .It Fl o
142 .\"O .Em Two-byte octal display .
143 .\"O Display the input offset in hexadecimal, followed by eight
144 .\"O space-separated, six column, zero-filled, two byte quantities of
145 .\"O input data, in octal, per line.
146 .Em 2 バイト単位の 8 進数表示。
147 入力オフセットを 16 進数で表示し、
148 その後に、入力 2 バイト単位を
149 0 で字詰めした 6 桁の 8 進数で表現し、
150 それを 1 行当たり 8 個、空白で区切って表示する。
151 .It Fl s Ar offset 
152 .\"O Skip
153 .\"O .Ar offset
154 .\"O bytes from the beginning of the input.
155 入力の先頭から
156 .Ar offset
157 バイトを読み飛ばす。
158 .\"O By default,
159 .\"O .Ar offset
160 .\"O is interpreted as a decimal number.
161 デフォルトでは
162 .Ar offset
163 は 10 進数として解釈される。
164 .\"O With a leading
165 .\"O .Cm 0x
166 .\"O or
167 .\"O .Cm 0X ,
168 .\"O .Ar offset
169 .\"O is interpreted as a hexadecimal number,
170 先頭に
171 .Cm 0x
172 または
173 .Cm 0X
174 を付けた場合、
175 .Ar offset
176 は 16 進数として解釈される。
177 .\"O otherwise, with a leading
178 .\"O .Cm 0 ,
179 .\"O .Ar offset
180 .\"O is interpreted as an octal number.
181 先頭に
182 .Cm 0
183 を付けた場合、
184 .Ar offset
185 は 8 進数として解釈される。
186 .\"O Appending the character
187 .\"O .Cm b ,
188 .\"O .Cm k ,
189 .\"O or
190 .\"O .Cm m
191 .\"O to
192 .\"O .Ar offset
193 .\"O causes it to be interpreted as a multiple of
194 .\"O .Li 512 ,
195 .\"O .Li 1024 ,
196 .\"O or
197 .\"O .Li 1048576 ,
198 .\"O respectively.
199 .Ar offset
200 の後ろに
201 .Cm b ,
202 .Cm k ,
203 .Cm m
204 を付けた場合、それぞれ
205 .Li 512 ,
206 .Li 1024 ,
207 .Li 1048576
208 倍であると解釈されるようになる。
209 .It Fl v
210 .\"O The
211 .\"O .Fl v
212 .\"O option causes hexdump to display all input data.
213 .Fl v
214 オプションを指定すると、hexdump に対して全ての入力データを表示させる。
215 .\"O Without the
216 .\"O .Fl v
217 .\"O option, any number of groups of output lines, which would be
218 .\"O identical to the immediately preceding group of output lines (except
219 .\"O for the input offsets), are replaced with a line comprised of a
220 .\"O single asterisk.
221 .Fl v
222 オプションを指定しない場合、
223 直前の出力行と同じ内容の行 (ただし、入力オフセットは除く) は、
224 何行であっても、
225 1 個のアスタリスクが書かれた行で置き換えられる。
226 .It Fl x
227 .\"O .Em Two-byte hexadecimal display .
228 .\"O Display the input offset in hexadecimal, followed by eight, space
229 .\"O separated, four column, zero-filled, two-byte quantities of input
230 .\"O data, in hexadecimal, per line.
231 .Em 2 バイト単位の 16 進数表示。
232 入力オフセットが 16 進数で表示し、
233 その後に、入力 2 バイト単位を
234 0 で字詰めした 4 桁の 16 進数で表現し、
235 それを 1 行当たり 8 個、空白で区切って表示する。
236 .El
237 .Pp
238 .\"O For each input file,
239 .\"O .Nm
240 .\"O sequentially copies the input to standard output, transforming the
241 .\"O data according to the format strings specified by the
242 .\"O .Fl e
243 .\"O and
244 .\"O .Fl f
245 .\"O options, in the order that they were specified.
246 各入力ファイルに対して、
247 .Nm
248 は、入力ファイルが指定された順番で、
249 .Fl e
250
251 .Fl f
252 オプションで指定されたフォーマット文字列に基づいて変換しながら
253 続けて標準出力に書き出していく。
254 .\"O .Ss Formats
255 .Ss フォーマット
256 .\"O A format string contains any number of format units, separated by
257 .\"O whitespace.
258 .\"O A format unit contains up to three items: an iteration count, a byte
259 .\"O count, and a format.
260 フォーマット文字列は、空白で区切られた任意の個数の
261 フォーマット単位を含んでいる。
262 フォーマット単位は最大 3 個の要素、つまり、
263 繰り返し回数・バイト数・フォーマットを含んでいる。
264 .Pp
265 .\"O The iteration count is an optional positive integer, which defaults to
266 .\"O one.
267 .\"O Each format is applied iteration count times.
268 繰り返し回数は、オプションとして指定される正の整数である。
269 デフォルトは 1 である。
270 各フォーマットは繰り返し回数だけ適用される。
271 .Pp
272 .\"O The byte count is an optional positive integer.
273 .\"O If specified it defines the number of bytes to be interpreted by
274 .\"O each iteration of the format.
275 バイト数は、オプションとして指定される正の整数である。
276 これが指定された場合、
277 1 つのフォーマットで処理されるバイト数を示す。
278 .Pp
279 .\"O If an iteration count and/or a byte count is specified, a single slash
280 .\"O must be placed after the iteration count and/or before the byte count
281 .\"O to disambiguate them.
282 .\"O Any whitespace before or after the slash is ignored.
283 繰り返し回数とバイト数 (の両方、もしくはどちらか一方) が指定された場合、
284 どちらの数字かを区別するために、
285 繰り返し回数の後とバイト数の前にスラッシュを 1 個置かなければならない。
286 スラッシュの前後の空白は無視される。
287 .Pp
288 .\"O The format is required and must be surrounded by double quote
289 .\"O (" ") marks.
290 .\"O It is interpreted as a fprintf-style format string (see
291 .\"O .Xr fprintf 3 ) ,
292 .\"O with the
293 .\"O following exceptions:
294 フォーマットは必須で、ダブルクォートマーク (" ") で囲まなければならない。
295 このフォーマットは、fprintf 形式のフォーマット文字列
296 .Ns ( Xr fprintf 3
297 を参照) として解釈されるが、
298 以下のような例外がある:
299 .Bl -bullet -offset indent
300 .It
301 .\"O An asterisk (*) may not be used as a field width or precision.
302 フィールドの幅や精度としてアスタリスク (*) を使えない。
303 .It
304 .\"O A byte count or field precision
305 .\"O .Em is
306 .\"O required for each ``s'' conversion
307 .\"O character (unlike the
308 .\"O .Xr fprintf 3
309 .\"O default which prints the entire string if the precision is unspecified).
310 個々の変換文字 ``s'' について、バイト数やフィールド精度が必須である
311 (精度が指定されていない場合に全ての文字列を表示する
312 .Xr fprintf 3
313 のデフォルトとは異なる)。
314 .It
315 .\"O The conversion characters ``h'', ``l'', ``n'', ``p'' and ``q'' are
316 .\"O not supported.
317 変換文字 ``h'', ``l'', ``n'', ``p'', ``q'' がサポートされていない。
318 .It
319 .\"O The single character escape sequences
320 .\"O described in the C standard are supported:
321 C 言語の標準規格で記述されている
322 1 文字のエスケープシーケンスがサポートされている:
323 .Bd -ragged -offset indent -compact
324 .Bl -column <alert_character>
325 .\"O .It NUL    \e0
326 .\"O .It <alert character>      \ea
327 .\"O .It <backspace>    \eb
328 .\"O .It <form-feed>    \ef
329 .\"O .It <newline>      \en
330 .\"O .It <carriage return>      \er
331 .\"O .It <tab>  \et
332 .\"O .It <vertical tab> \ev
333 .It NUL \e0
334 .It <アラート文字>        \ea
335 .It <バックスペース>     \eb
336 .It <フォームフィード>  \ef
337 .It <改行>    \en
338 .It <復帰>    \er
339 .It <タブ>    \et
340 .It <垂直タブ>      \ev
341 .El
342 .Ed
343 .El
344 .Pp
345 .\"O Hexdump also supports the following additional conversion strings:
346 hexdump は、他にも以下の変換文字列をサポートする:
347 .Bl -tag -width Fl
348 .It Cm \&_a Ns Op Cm dox 
349 .\"O Display the input offset, cumulative across input files, of the
350 .\"O next byte to be displayed.
351 次に表示されるバイトのオフセット
352 (複数の入力ファイルで通算した値) を表示する。
353 .\"O The appended characters
354 .\"O .Cm d ,
355 .\"O .Cm o ,
356 .\"O and
357 .\"O .Cm x
358 .\"O specify the display base
359 .\"O as decimal, octal or hexadecimal respectively.
360 文字
361 .Cm d ,
362 .Cm o ,
363 .Cm x
364 を後ろに付加すると、表示の際の基数がそれぞれ 10, 8, 16 進数に指定される。
365 .It Cm \&_A Ns Op Cm dox 
366 .\"O Identical to the
367 .\"O .Cm \&_a
368 .\"O conversion string except that it is only performed
369 .\"O once, when all of the input data has been processed.
370 変換文字列
371 .Cm \&_a
372 とほぼ同じ。
373 ただし、この変換は全ての入力データが処理された後で 1 回だけ実行される。
374 .It Cm \&_c
375 .\"O Output characters in the default character set.
376 .\"O Nonprinting characters are displayed in three character, zero-padded
377 .\"O octal, except for those representable by standard escape notation
378 .\"O (see above),
379 .\"O which are displayed as two character strings.
380 デフォルト文字セットの文字で出力する。
381 表示不能な文字は、0 で字詰めした 3 桁の 8 進数で表示される。
382 ただし、標準エスケープ表記で表現される文字 (上記を参照) は、
383 その 2 文字の文字列で表示される。
384 .It Cm _p
385 .\"O Output characters in the default character set.
386 .\"O Nonprinting characters are displayed as a single
387 .\"O .Dq Cm \&. .
388 デフォルト文字セットの文字で出力する。
389 表示不能な文字は、1 個の
390 .Dq Cm \&.
391 として表示される。
392 .It Cm _u
393 .\"O Output US ASCII characters, with the exception that control characters are
394 .\"O displayed using the following, lower-case, names.
395 .\"O Characters greater than 0xff, hexadecimal, are displayed as hexadecimal
396 .\"O strings.
397 US ASCII 文字で出力する。
398 ただし、制御文字は以下のような小文字の名前を使って表示される。
399 16 進数で 0xff より大きい文字は、
400 16 進数の文字列として表示される。
401 .Bl -column \&000_nu \&001_so \&002_st \&003_et \&004_eo
402 .It \&000\ nul\t001\ soh\t002\ stx\t003\ etx\t004\ eot\t005\ enq
403 .It \&006\ ack\t007\ bel\t008\ bs\t009\ ht\t00A\ lf\t00B\ vt
404 .It \&00C\ ff\t00D\ cr\t00E\ so\t00F\ si\t010\ dle\t011\ dc1
405 .It \&012\ dc2\t013\ dc3\t014\ dc4\t015\ nak\t016\ syn\t017\ etb
406 .It \&018\ can\t019\ em\t01A\ sub\t01B\ esc\t01C\ fs\t01D\ gs
407 .It \&01E\ rs\t01F\ us\t0FF\ del
408 .El
409 .El
410 .Pp
411 .\"O The default and supported byte counts for the conversion characters
412 .\"O are as follows:
413 変換文字列で使われるデフォルトのバイト数とサポートされるバイト数は、
414 以下の通りである。
415 .Bl -tag -width  "Xc,_Xc,_Xc,_Xc,_Xc,_Xc" -offset indent
416 .It Li \&%_c , \&%_p , \&%_u , \&%c
417 .\"O One byte counts only.
418 1 バイトのみ。
419 .It Xo
420 .Li \&%d , \&%i , \&%o ,
421 .Li \&%u , \&%X , \&%x 
422 .Xc
423 .\"O Four byte default, one, two and four byte counts supported.
424 4 バイトがデフォルト。1, 2, 4 バイトがサポートされている。
425 .It Xo
426 .Li \&%E , \&%e , \&%f ,
427 .Li \&%G , \&%g 
428 .Xc
429 .\"O Eight byte default, four byte counts supported.
430 8 バイトがデフォルト。4 バイトがサポートされている。
431 .El
432 .Pp
433 .\"O The amount of data interpreted by each format string is the sum of the
434 .\"O data required by each format unit, which is the iteration count times the
435 .\"O byte count, or the iteration count times the number of bytes required by
436 .\"O the format if the byte count is not specified.
437 各フォーマット文字列によって処理されるデータの量は、
438 各フォーマット単位で必要とされるデータの合計である。
439 この合計は (繰り返し回数)×(バイト数) である。
440 また、バイト数が指定されていない場合は、
441 (繰り返し回数)×(フォーマットが必要としているバイト数) である。
442 .Pp
443 .\"O The input is manipulated in ``blocks'', where a block is defined as the
444 .\"O largest amount of data specified by any format string.
445 .\"O Format strings interpreting less than an input block's worth of data,
446 .\"O whose last format unit both interprets some number of bytes and does
447 .\"O not have a specified iteration count, have the iteration count
448 .\"O incremented until the entire input block has been processed or there
449 .\"O is not enough data remaining in the block to satisfy the format string.
450 入力は「ブロック」ごとに操作される。
451 ブロックは、フォーマット文字列で指定される
452 データの塊のうちで最大のもの、と定義される。
453 入力ブロックのデータより少ないバイト数しか処理していないフォーマット文字列で、
454 その中の最後のフォーマット単位で数バイトを処理し、
455 かつ繰り返し回数が指定されていない場合、
456 入力ブロック全体が処理されるか、
457 フォーマット文字列に合致するデータがブロックになくなるまで、
458 繰り返し回数を増加させる。
459 .Pp
460 .\"O If, either as a result of user specification or hexdump modifying
461 .\"O the iteration count as described above, an iteration count is
462 .\"O greater than one, no trailing whitespace characters are output
463 .\"O during the last iteration.
464 ユーザーの指定、
465 または hexdump が上で説明したように繰り返し回数を変更した結果、
466 繰り返し回数が 2 回以上になった場合、
467 最後の繰り返しにおける末尾の空白は出力されない。
468 .Pp
469 .\"O It is an error to specify a byte count as well as multiple conversion
470 .\"O characters or strings unless all but one of the conversion characters
471 .\"O or strings is
472 .\"O .Cm \&_a
473 .\"O or
474 .\"O .Cm \&_A .
475 バイト数を複数の変換文字と共に指定すると、
476 1 つを除いた全ての変換文字が
477 .Cm \&_a
478 または
479 .Cm \&_A
480 である場合以外は、エラーになる。
481 .Pp
482 .\"O If, as a result of the specification of the
483 .\"O .Fl n
484 .\"O option or end-of-file being reached, input data only partially
485 .\"O satisfies a format string, the input block is zero-padded sufficiently
486 .\"O to display all available data (i.e. any format units overlapping the
487 .\"O end of data will display some number of the zero bytes).
488 .Fl n
489 オプションで指定したバイト数分、またはファイル終端に達したときに、
490 入力データがフォーマット文字列の一部分にしか満たさない場合、
491 有効なデータを全て表示するために、入力ブロックには適切な数の 0 が補われる
492 (すなわち、データの終端にまたがっているフォーマット単位は、
493 何個かの 0 のバイトを表示する)。
494 .Pp
495 .\"O Further output by such format strings is replaced by an equivalent
496 .\"O number of spaces.
497 このようなフォーマット文字列によるさらなる出力は、
498 等数の空白で置き換えられる。
499 .\"O An equivalent number of spaces is defined as the number of spaces
500 .\"O output by an
501 .\"O .Cm s
502 .\"O conversion character with the same field width
503 .\"O and precision as the original conversion character or conversion
504 .\"O string but with any
505 .\"O .Dq Li \&+ ,
506 .\"O .Dq \&\ \& ,
507 .\"O .Dq Li \&#
508 .\"O conversion flag characters
509 .\"O removed, and referencing a NULL string.
510 等数の空白とは、元々の変換文字とフィールド幅と精度は同じで、
511 変換フラグ文字
512 .Dq Li \&+ ,
513 .Dq \&\ \& ,
514 .Dq Li \&#
515 を取り除いた
516 .Cm s
517 変換文字が NULL 文字列を参照した場合に出力される数の空白である。
518 .Pp
519 .\"O If no format strings are specified, the default display is equivalent
520 .\"O to specifying the
521 .\"O .Fl x
522 .\"O option.
523 フォーマット文字列が指定されない場合、
524 デフォルトの表示は
525 .Fl x
526 オプションを指定した場合と同じである。
527 .Pp
528 .\"O .Nm
529 .\"O exits 0 on success and >0 if an error occurred.
530 .Nm
531 は成功すると 0 を返して終了する。
532 エラーが起こった場合は、1 以上を返して終了する。
533 .\"O .Sh EXAMPLES
534 .Sh 例
535 .\"O Display the input in perusal format:
536 入力を perusal (詳しく閲覧する) フォーマットで表示する:
537 .Bd -literal -offset indent
538 "%06.6_ao "  12/1 "%3_u "
539 "\et\et" "%_p "
540 "\en"
541 .Ed
542 .Pp
543 .\"O Implement the \-x option:
544 \-x オプションを実装する:
545 .Bd -literal -offset indent
546 "%07.7_Ax\en"
547 "%07.7_ax  " 8/2 "%04x " "\en"
548 .Ed
549 .\"O .Sh STANDARDS
550 .Sh 準拠
551 .\"O The
552 .\"O .Nm
553 .\"O utility is expected to be
554 .\"O .St -p1003.2
555 .\"O compatible.
556 .Nm
557 ユーティリティは
558 .St -p1003.2
559 に適合しているはずである。
560 .Sh 翻訳者謝辞
561 この man ページの翻訳にあたり、
562 FreeBSD jpman project <http://www.jp.freebsd.org/man-jp/>
563 による翻訳を参考にさせていただいた。