📄 printf.1
字号:
.\" Copyright (c) 1989, 1990, 1993.\" The Regents of the University of California. All rights reserved..\" Copyright (c) 1997-2005.\" Herbert Xu <herbert@gondor.apana.org.au>. All rights reserved..\".\" This code is derived from software contributed to Berkeley by.\" the Institute of Electrical and Electronics Engineers, Inc..\".\" Redistribution and use in source and binary forms, with or without.\" modification, are permitted provided that the following conditions.\" are met:.\" 1. Redistributions of source code must retain the above copyright.\" notice, this list of conditions and the following disclaimer..\" 2. Redistributions in binary form must reproduce the above copyright.\" notice, this list of conditions and the following disclaimer in the.\" documentation and/or other materials provided with the distribution..\" 3. Neither the name of the University nor the names of its contributors.\" may be used to endorse or promote products derived from this software.\" without specific prior written permission..\".\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION).\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF.\" SUCH DAMAGE..\".\" from: @(#)printf.1 8.1 (Berkeley) 6/6/93.\".Dd November 5, 1993.Dt PRINTF 1.Os.Sh NAME.Nm printf.Nd formatted output.Sh SYNOPSIS.Nm.Ar format.Op Ar arguments ....Sh DESCRIPTION.Nmformats and prints its arguments, after the first, under controlof the.Ar format .The.Ar formatis a character string which contains three types of objects: plain characters,which are simply copied to standard output, character escape sequences whichare converted and copied to the standard output, and format specifications,each of which causes printing of the next successive.Ar argument ..PpThe.Ar argumentsafter the first are treated as strings if the corresponding format iseither.Cm b ,.Cm B ,.Cm cor.Cm s ;otherwise it is evaluated as a C constant, with the following extensions:.Pp.Bl -bullet -offset indent -compact.ItA leading plus or minus sign is allowed..ItIf the leading character is a single or double quote, the value is the.Tn ASCIIcode of the next character..El.PpThe format string is reused as often as necessary to satisfy the.Ar arguments .Any extra format specifications are evaluated with zero or the nullstring..PpCharacter escape sequences are in backslash notation as defined in.St -ansiC .The characters and their meanings are as follows:.Bl -tag -width Ds -offset indent.It Cm \eeWrite an \*[Lt]escape\*[Gt] character..It Cm \eaWrite a \*[Lt]bell\*[Gt] character..It Cm \ebWrite a \*[Lt]backspace\*[Gt] character..It Cm \efWrite a \*[Lt]form-feed\*[Gt] character..It Cm \enWrite a \*[Lt]new-line\*[Gt] character..It Cm \erWrite a \*[Lt]carriage return\*[Gt] character..It Cm \etWrite a \*[Lt]tab\*[Gt] character..It Cm \evWrite a \*[Lt]vertical tab\*[Gt] character..It Cm \e\'Write a \*[Lt]single quote\*[Gt] character..It Cm \e"Write a \*[Lt]double quote\*[Gt] character..It Cm \e\eWrite a backslash character..It Cm \e Ns Ar numWrite an 8\-bit character whose.Tn ASCIIvalue is the 1\-, 2\-, or 3\-digit octal number.Ar num ..It Cm \ex Ns Ar xxWrite an 8\-bit character whose.Tn ASCIIvalue is the 1\- or 2\-digit hexadecimal number.Ar xx ..El.PpEach format specification is introduced by the percent character(``%'').The remainder of the format specification includes,in the following order:.Bl -tag -width Ds.It "Zero or more of the following flags:".Bl -tag -width Ds.It Cm #A `#' characterspecifying that the value should be printed in an ``alternative form''.For.Cm b ,.Cm c ,.Cm d ,and.Cm sformats, this option has no effect.For the.Cm oformat the precision of the number is increased to force the firstcharacter of the output string to a zero.For the.Cm x.Pq Cm Xformat, a non-zero result has the string.Li 0x.Pq Li 0Xprepended to it.For.Cm e ,.Cm E ,.Cm f ,.Cm g ,and.Cm Gformats, the result will always contain a decimal point, even if nodigits follow the point (normally, a decimal point only appears in theresults of those formats if a digit follows the decimal point).For.Cm gand.Cm Gformats, trailing zeros are not removed from the result as theywould otherwise be..\" I turned this off - decided it isn't a valid use of '#'.\" For the.\" .Cm B.\" format, backslash-escape sequences are expanded first;.It Cm \&\-A minus sign `\-' which specifies.Em left adjustmentof the output in the indicated field;.It Cm \&+A `+' character specifying that there should always bea sign placed before the number when using signed formats..It Sq \&\ \&A space specifying that a blank should be left before a positive numberfor a signed format.A `+' overrides a space if both are used;.It Cm \&0A zero `0' character indicating that zero-padding should be usedrather than blank-padding.A `\-' overrides a `0' if both are used;.El.It "Field Width:"An optional digit string specifying a.Em field width ;if the output string has fewer characters than the field width it willbe blank-padded on the left (or right, if the left-adjustment indicatorhas been given) to make up the field width (note that a leading zerois a flag, but an embedded zero is part of a field width);.It Precision :An optional period,.Sq Cm \&.\& ,followed by an optional digit string giving a.Em precisionwhich specifies the number of digits to appear after the decimal point,for.Cm eand.Cm fformats, or the maximum number of characters to be printedfrom a string.Sm off.Pf ( Cm b No ,.Sm on.Cm Band.Cm sformats); if the digit string is missing, the precision is treatedas zero;.It Format :A character which indicates the type of format to use (one of.Cm diouxXfwEgGbBcs ) ..El.PpA field width or precision may be.Sq Cm \&*instead of a digit string.In this case an.Ar argumentsupplies the field width or precision..PpThe format characters and their meanings are:.Bl -tag -width Fl.It Cm diouXxThe.Ar argumentis printed as a signed decimal (d or i), unsigned octal, unsigned decimal,or unsigned hexadecimal (X or x), respectively..It Cm fThe.Ar argumentis printed in the style.Sm off.Pf [\-]ddd Cm \&. No ddd.Sm onwhere the number of d'safter the decimal point is equal to the precision specification forthe argument.If the precision is missing, 6 digits are given; if the precisionis explicitly 0, no digits and no decimal point are printed..It Cm eEThe.Ar argumentis printed in the style.Sm off.Pf [\-]d Cm \&. No ddd Cm e No \\*(Pmdd.Sm onwhere thereis one digit before the decimal point and the number after is equal tothe precision specification for the argument; when the precision ismissing, 6 digits are produced.An upper-case E is used for an `E' format..It Cm gGThe.Ar argumentis printed in style.Cm for in style.Cm e.Pq Cm Ewhichever gives full precision in minimum space..It Cm bCharacters from the string.Ar argumentare printed with backslash-escape sequences expanded..brThe following additional backslash-escape sequences are supported:.Bl -tag -width Ds.It Cm \ecCauses.Nmto ignore any remaining characters in the string operand containing it,any remaining string operands, and any additional characters inthe format operand..It Cm \e0 Ns Ar numWrite an 8\-bit character whose.Tn ASCIIvalue is the 1\-, 2\-, or 3\-digitoctal number.Ar num ..It Cm \e^ Ns Ar cWrite the control character.Ar c .Generates characters `\e000' through `\e037`, and `\e177' (from `\e^?')..It Cm \eM\- Ns Ar cWrite the character.Ar cwith the 8th bit set.Generates characters `\e241' through `\e376`..It Cm \eM^ Ns Ar cWrite the control character.Ar cwith the 8th bit set.Generates characters `\e000' through `\e037`, and `\e177' (from `\eM^?')..El.It Cm BCharacters from the string.Ar argumentare printed with unprintable characters backslash-escaped using the.Sm off.Pf ` Cm \e Ar c No ',.Pf ` Cm \e^ Ar c No ',.Pf ` Cm \eM\- Ar c No 'or.Pf ` Cm \eM^ Ar c No ',.Sm onformats described above..It Cm cThe first character of.Ar argumentis printed..It Cm sCharacters from the string.Ar argumentare printed until the end is reached or until the number of charactersindicated by the precision specification is reached; if theprecision is omitted, all characters in the string are printed..It Cm \&%Print a `%'; no argument is used..El.PpIn no case does a non-existent or small field width cause truncation ofa field; padding takes place only if the specified field width exceedsthe actual width..Sh EXIT STATUS.Nmexits 0 on success, 1 on failure..Sh SEE ALSO.Xr echo 1 ,.Xr printf 3 ,.Xr printf 9.Xr vis 3.Sh STANDARDSThe.Nmutility conforms to.St -p1003.1-2001 ..PpSupport for the floating point formats and `*' as a field width and precisionare optional in POSIX..PpThe behaviour of the %B format and the \e', \e", \exxx, \ee and\e[M][\-|^]c escape sequences are undefined in POSIX..Sh BUGSSince the floating point numbers are translated from.Tn ASCIIto floating-point andthen back again, floating-point precision may be lost..PpHexadecimal character constants are restricted to, and should be specifiedas, two character constants. This is contrary to the ISO C standard butdoes guarantee detection of the end of the constant.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -