1 .\" Copyright (c) 1989, 1990, 1993
2 .\" The Regents of the University of California. All rights reserved.
4 .\" This code is derived from software contributed to Berkeley by
5 .\" the Institute of Electrical and Electronics Engineers, Inc.
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\" notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\" notice, this list of conditions and the following disclaimer in the
14 .\" documentation and/or other materials provided with the distribution.
15 .\" 3. All advertising materials mentioning features or use of this software
16 .\" must display the following acknowledgement:
17 .\" This product includes software developed by the University of
18 .\" California, Berkeley and its contributors.
19 .\" 4. Neither the name of the University nor the names of its contributors
20 .\" may be used to endorse or promote products derived from this software
21 .\" without specific prior written permission.
23 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 .\" @(#)printf.1 8.1 (Berkeley) 6/6/93
36 .\" $FreeBSD: src/usr.bin/printf/printf.1,v 1.34 2005/06/14 11:50:52 ru Exp $
46 .Ar format Op Ar arguments ...
50 utility formats and prints its arguments, after the first, under control
55 is a character string which contains three types of objects: plain characters,
56 which are simply copied to standard output, character escape sequences which
57 are converted and copied to the standard output, and format specifications,
58 each of which causes printing of the next successive
63 after the first are treated as strings if the corresponding format is
68 otherwise it is evaluated as a C constant, with the following extensions:
70 .Bl -bullet -offset indent -compact
72 A leading plus or minus sign is allowed.
74 If the leading character is a single or double quote, the value is the
76 code of the next character.
79 The format string is reused as often as necessary to satisfy the
81 Any extra format specifications are evaluated with zero or the null
84 Character escape sequences are in backslash notation as defined in the
87 The characters and their meanings
90 .Bl -tag -width Ds -offset indent -compact
92 Write a <bell> character.
94 Write a <backspace> character.
96 Ignore remaining characters in this string.
98 Write a <form-feed> character.
100 Write a <new-line> character.
102 Write a <carriage return> character.
104 Write a <tab> character.
106 Write a <vertical tab> character.
108 Write a <single quote> character.
110 Write a backslash character.
113 Write an 8-bit character whose
115 value is the 1-, 2-, or 3-digit
120 Each format specification is introduced by the percent character
122 The remainder of the format specification includes,
123 in the following order:
125 .It "Zero or more of the following flags:"
129 specifying that the value should be printed in an ``alternate form''.
134 formats, this option has no effect.
137 formats the precision of the number is increased to force the first
138 character of the output string to a zero.
142 format, a non-zero result has the string
150 formats, the result will always contain a decimal point, even if no
151 digits follow the point (normally, a decimal point only appears in the
152 results of those formats if a digit follows the decimal point).
157 formats, trailing zeros are not removed from the result as they
160 A minus sign `\-' which specifies
162 of the output in the indicated field;
164 A `+' character specifying that there should always be
165 a sign placed before the number when using signed formats.
167 A space specifying that a blank should be left before a positive number
169 A `+' overrides a space if both are used;
171 A zero `0' character indicating that zero-padding should be used
172 rather than blank-padding.
173 A `\-' overrides a `0' if both are used;
176 An optional digit string specifying a
178 if the output string has fewer characters than the field width it will
179 be blank-padded on the left (or right, if the left-adjustment indicator
180 has been given) to make up the field width (note that a leading zero
181 is a flag, but an embedded zero is part of a field width);
185 followed by an optional digit string giving a
187 which specifies the number of digits to appear after the decimal point,
192 formats, or the maximum number of characters to be printed
193 from a string; if the digit string is missing, the precision is treated
196 A character which indicates the type of format to use (one of
197 .Cm diouxXfFeEgGaAcsb ) .
198 The uppercase formats differ from their lowercase counterparts only in
199 that the output of the former is entirely in uppercase.
200 The floating-point format specifiers
202 may be prefixed by an
204 to request that additional precision be used, if available.
207 A field width or precision may be
209 instead of a digit string.
212 supplies the field width or precision.
214 The format characters and their meanings are:
219 is printed as a signed decimal (d or i), unsigned octal, unsigned decimal,
220 or unsigned hexadecimal (X or x), respectively.
224 is printed in the style `[\-]ddd.ddd' where the number of d's
225 after the decimal point is equal to the precision specification for
227 If the precision is missing, 6 digits are given; if the precision
228 is explicitly 0, no digits and no decimal point are printed.
229 The values \*[If] and \*[Na] are printed as
237 is printed in the style
240 .Sq Op - Ar d.ddd No \(+- Ar dd
243 is one digit before the decimal point and the number after is equal to
244 the precision specification for the argument; when the precision is
245 missing, 6 digits are produced.
246 The values \*[If] and \*[Na] are printed as
260 whichever gives full precision in minimum space.
266 .Sq Op - Ar h.hhh No \(+- Li p Ar d
268 where there is one digit before the hexadecimal point and the number
269 after is equal to the precision specification for the argument;
270 when the precision is missing, enough digits are produced to convey
271 the argument's exact double-precision floating-point representation.
272 The values \*[If] and \*[Na] are printed as
278 The first character of
282 Characters from the string
284 are printed until the end is reached or until the number of characters
285 indicated by the precision specification is reached; however if the
286 precision is 0 or missing, all characters in the string are printed.
290 but interpret character escapes in backslash notation in the string
293 Print a `%'; no argument is used.
297 character is defined in the program's locale (category
300 In no case does a non-existent or small field width cause truncation of
301 a field; padding takes place only if the specified field width exceeds
308 behavior of converting arguments of numeric formats not beginning
311 code of the first character is not supported.
318 command is expected to be mostly compatible with the
327 after the standard library function,
330 Since the floating point numbers are translated from
332 to floating-point and
333 then back again, floating-point precision may be lost.
334 (By default, the number is translated to an IEEE-754 double-precision
335 value before being printed.
338 modifier may produce additional precision, depending on the hardware platform.)
341 hexadecimal character constants were deliberately not provided.
343 The escape sequence \e000 is the string terminator.
344 When present in the argument for the
346 format, the argument will be truncated at the \e000 character.
348 Multibyte characters are not recognized in format strings (this is only
351 can appear inside a multibyte character).
353 Parsing of - arguments is also somewhat different from
355 where unknown arguments are simply printed instead of being