logo

utils-std

Collection of commonly available Unix tools git clone https://anongit.hacktivis.me/git/utils-std.git/

printf.1 (12095B)


  1. .\" SPDX-License-Identifier: BSD-3-Clause
  2. .\" Copyright (c) 1989, 1990, 1993
  3. .\" The Regents of the University of California. All rights reserved.
  4. .\"
  5. .\" This code is derived from software contributed to Berkeley by
  6. .\" the Institute of Electrical and Electronics Engineers, Inc.
  7. .\"
  8. .\" Redistribution and use in source and binary forms, with or without
  9. .\" modification, are permitted provided that the following conditions
  10. .\" are met:
  11. .\" 1. Redistributions of source code must retain the above copyright
  12. .\" notice, this list of conditions and the following disclaimer.
  13. .\" 2. Redistributions in binary form must reproduce the above copyright
  14. .\" notice, this list of conditions and the following disclaimer in the
  15. .\" documentation and/or other materials provided with the distribution.
  16. .\" 3. 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. .Dd March 9, 2025
  33. .Dt PRINTF 1
  34. .Os
  35. .Sh NAME
  36. .Nm printf
  37. .Nd formatted output
  38. .Sh SYNOPSIS
  39. .Nm
  40. .Ar format Op Ar argument...
  41. .Sh DESCRIPTION
  42. The
  43. .Nm
  44. utility formats and prints its arguments, after the first, under control
  45. of the
  46. .Ar format .
  47. The
  48. .Ar format
  49. is a character string which contains three types of objects: plain characters,
  50. which are simply copied to standard output, character escape sequences which
  51. are converted and copied to the standard output, and format specifications,
  52. each of which causes printing of the next successive
  53. .Ar argument .
  54. .Pp
  55. The
  56. .Ar argument
  57. after the first are treated as strings if the corresponding format is
  58. either
  59. .Cm c , b
  60. or
  61. .Cm s ;
  62. otherwise it is evaluated as a C constant, with the following extensions:
  63. .Pp
  64. .Bl -bullet -offset indent -compact
  65. .It
  66. A leading plus or minus sign is allowed.
  67. .It
  68. If the leading character is a single or double quote, the value is the
  69. character code of the next character.
  70. .El
  71. .Pp
  72. The format string is reused as often as necessary to satisfy the
  73. .Ar argument .
  74. Any extra format specifications are evaluated with zero or the null
  75. string.
  76. .Pp
  77. Character escape sequences are in backslash notation as defined in the
  78. .St -ansiC ,
  79. with extensions.
  80. The characters and their meanings
  81. are as follows:
  82. .Pp
  83. .Bl -tag -width Ds -offset indent -compact
  84. .It Cm \ea
  85. Write a <bell> character.
  86. .It Cm \eb
  87. Write a <backspace> character.
  88. .It Cm \ee
  89. Write an <escape> character.
  90. .It Cm \ef
  91. Write a <form-feed> character.
  92. .It Cm \en
  93. Write a <new-line> character.
  94. .It Cm \er
  95. Write a <carriage return> character.
  96. .It Cm \et
  97. Write a <tab> character.
  98. .It Cm \ev
  99. Write a <vertical tab> character.
  100. .It Cm \e\(aq
  101. Write a <single quote> character.
  102. .It Cm \e\e
  103. Write a backslash character.
  104. .It Cm \ec Ns Ar char
  105. Write a control character, where:
  106. .Bl -bullet -compact
  107. .It
  108. .Cm @
  109. is 0x00 / NULL,
  110. .It
  111. .Cm A-Z
  112. /
  113. .Cm a-z
  114. corresponds to 0x01-0x1A,
  115. .It
  116. .Cm \(lB
  117. is 0x1B / ESC / Escape,
  118. .It
  119. .Cm \(rs
  120. is 0x1C / FS / Field-Separator,
  121. .It
  122. .Cm \(rB
  123. is 0x1D / GS / Group-Separator,
  124. .It
  125. .Cm ^
  126. is 0x1E / RS / Record-Separator,
  127. .\" not sure how to tell mandoc to include the underscore as Cm argument
  128. .It
  129. .Cm _
  130. is 0x1F / US / Unit-Separator,
  131. .It
  132. .Cm \&?
  133. is 0x7F / DEL / Delete.
  134. .El
  135. Note that the values corresponds to circumflex escapes (ie. ^A == \ecA).
  136. .It Cm \ex Ns Ar hex-num
  137. Write a byte whose
  138. value is the 1- or 2-digits
  139. hexadecimal number
  140. .Ar hex-num .
  141. .It Cm \e Ns Ar num
  142. Write a byte whose
  143. value is the 1-, 2-, or 3-digit
  144. octal number
  145. .Ar num .
  146. .El
  147. Multibyte characters can be constructed using multiple
  148. .Cm \ex Ns Ar hex-num
  149. or
  150. .Cm \e Ns Ar num
  151. sequences.
  152. .Pp
  153. Each format specification is introduced by the percent character
  154. (``%'').
  155. The remainder of the format specification includes,
  156. in the following order:
  157. .Bl -tag -width Ds
  158. .It "Zero or more of the following flags:"
  159. .Bl -tag -width Ds
  160. .It Cm #
  161. A `#' character
  162. specifying that the value should be printed in an ``alternate form''.
  163. For
  164. .Cm b , c , d , s
  165. and
  166. .Cm u
  167. formats, this option has no effect.
  168. For the
  169. .Cm o
  170. formats the precision of the number is increased to force the first
  171. character of the output string to a zero.
  172. For the
  173. .Cm x
  174. .Pq Cm X
  175. format, a non-zero result has the string
  176. .Li 0x
  177. .Pq Li 0X
  178. prepended to it.
  179. For
  180. .Cm a , A , e , E , f , F , g
  181. and
  182. .Cm G
  183. formats, the result will always contain a decimal point, even if no
  184. digits follow the point (normally, a decimal point only appears in the
  185. results of those formats if a digit follows the decimal point).
  186. For
  187. .Cm g
  188. and
  189. .Cm G
  190. formats, trailing zeros are not removed from the result as they
  191. would otherwise be;
  192. .It Cm \&\-
  193. A minus sign `\-' which specifies
  194. .Em left adjustment
  195. of the output in the indicated field;
  196. .It Cm \&+
  197. A `+' character specifying that there should always be
  198. a sign placed before the number when using signed formats.
  199. .It Sq \&\ \&
  200. A space specifying that a blank should be left before a positive number
  201. for a signed format.
  202. A `+' overrides a space if both are used;
  203. .It Cm \&0
  204. A zero `0' character indicating that zero-padding should be used
  205. rather than blank-padding.
  206. A `\-' overrides a `0' if both are used;
  207. .El
  208. .It "Field Width:"
  209. An optional digit string specifying a
  210. .Em field width ;
  211. if the output string has fewer bytes than the field width it will
  212. be blank-padded on the left (or right, if the left-adjustment indicator
  213. has been given) to make up the field width (note that a leading zero
  214. is a flag, but an embedded zero is part of a field width);
  215. .It Precision:
  216. An optional period,
  217. .Sq Cm \&.\& ,
  218. followed by an optional digit string giving a
  219. .Em precision
  220. which specifies the number of digits to appear after the decimal point,
  221. for
  222. .Cm e
  223. and
  224. .Cm f
  225. formats, or the maximum number of bytes to be printed
  226. from a string; if the digit string is missing, the precision is treated
  227. as zero;
  228. .It Format:
  229. A character which indicates the type of format to use (one of
  230. .Cm diouxXfFeEgGaAcsb ) .
  231. The uppercase formats differ from their lowercase counterparts only in
  232. that the output of the former is entirely in uppercase.
  233. The floating-point format specifiers
  234. .Pq Cm fFeEgGaA
  235. may be prefixed by an
  236. .Cm L
  237. to request that additional precision be used, if available.
  238. .El
  239. .Pp
  240. A field width or precision may be
  241. .Sq Cm \&*
  242. instead of a digit string.
  243. In this case an
  244. .Ar argument
  245. supplies the field width or precision.
  246. .Pp
  247. The format characters and their meanings are:
  248. .Bl -tag -width Fl
  249. .It Cm diouXx
  250. The
  251. .Ar argument
  252. is printed as a signed decimal (d or i), unsigned octal, unsigned decimal,
  253. or unsigned hexadecimal (X or x), respectively.
  254. .It Cm fF
  255. The
  256. .Ar argument
  257. is printed in the style `[\-]ddd.ddd' where the number of d's
  258. after the decimal point is equal to the precision specification for
  259. the argument.
  260. If the precision is missing, 6 digits are given; if the precision
  261. is explicitly 0, no digits and no decimal point are printed.
  262. The values \*[If] and \*[Na] are printed as
  263. .Ql inf
  264. and
  265. .Ql nan ,
  266. respectively.
  267. .It Cm eE
  268. The
  269. .Ar argument
  270. is printed in the style
  271. .Cm e
  272. .Sm off
  273. .Sq Op - Ar d.ddd No \(+- Ar dd
  274. .Sm on
  275. where there
  276. is one digit before the decimal point and the number after is equal to
  277. the precision specification for the argument; when the precision is
  278. missing, 6 digits are produced.
  279. The values \*[If] and \*[Na] are printed as
  280. .Ql inf
  281. and
  282. .Ql nan ,
  283. respectively.
  284. .It Cm gG
  285. The
  286. .Ar argument
  287. is printed in style
  288. .Cm f
  289. .Pq Cm F
  290. or in style
  291. .Cm e
  292. .Pq Cm E
  293. whichever gives full precision in minimum space.
  294. .It Cm aA
  295. The
  296. .Ar argument
  297. is printed in style
  298. .Sm off
  299. .Sq Op - Ar h.hhh No \(+- Li p Ar d
  300. .Sm on
  301. where there is one digit before the hexadecimal point and the number
  302. after is equal to the precision specification for the argument;
  303. when the precision is missing, enough digits are produced to convey
  304. the argument's exact double-precision floating-point representation.
  305. The values \*[If] and \*[Na] are printed as
  306. .Ql inf
  307. and
  308. .Ql nan ,
  309. respectively.
  310. .It Cm c
  311. The first byte of
  312. .Ar argument
  313. is printed.
  314. .It Cm s
  315. Bytes from the string
  316. .Ar argument
  317. are printed until the end is reached or until the number of bytes
  318. indicated by the precision specification is reached; however if the
  319. precision is 0 or missing, the string is printed entirely.
  320. .It Cm b
  321. As for
  322. .Cm s ,
  323. but interpret character escapes in backslash notation in the string
  324. .Ar argument .
  325. The permitted escape sequences are slightly different in that
  326. octal escapes are
  327. .Cm \e0 Ns Ar num
  328. instead of
  329. .Cm \e Ns Ar num
  330. and that an additional escape sequence
  331. .Cm \ec
  332. stops further output from this
  333. .Nm
  334. invocation.
  335. .It Cm n$
  336. Allows reordering of the output according to
  337. .Ar argument .
  338. .It Cm \&%
  339. Print a `%'; no argument is used.
  340. .El
  341. .Pp
  342. The decimal point
  343. character is defined in the program's locale (category
  344. .Dv LC_NUMERIC ) .
  345. .Pp
  346. In no case does a non-existent or small field width cause truncation of
  347. a field; padding takes place only if the specified field width exceeds
  348. the actual width.
  349. .Pp
  350. Some shells may provide a builtin
  351. .Nm
  352. command which is similar or identical to this utility.
  353. .Sh EXIT STATUS
  354. .Ex -std
  355. .Sh EXAMPLES
  356. Print the string
  357. .Qq hello :
  358. .Bd -literal -offset indent
  359. $ printf "%s\en" hello
  360. hello
  361. .Ed
  362. .Pp
  363. Same as above, but notice that the format string is not quoted and hence we
  364. do not get the expected behavior:
  365. .Bd -literal -offset indent
  366. $ printf %s\en hello
  367. hellon$
  368. .Ed
  369. .Pp
  370. Print arguments forcing sign only for the first argument:
  371. .Bd -literal -offset indent
  372. $ printf "%+d\en%d\en%d\en" 1 -2 13
  373. +1
  374. -2
  375. 13
  376. .Ed
  377. .Pp
  378. Same as above, but the single format string will be applied to the three
  379. arguments:
  380. .Bd -literal -offset indent
  381. $ printf "%+d\en" 1 -2 13
  382. +1
  383. -2
  384. +13
  385. .Ed
  386. .Pp
  387. Print number using only two digits after the decimal point:
  388. .Bd -literal -offset indent
  389. $ printf "%.2f\en" 31.7456
  390. 31.75
  391. .Ed
  392. .Sh COMPATIBILITY
  393. The traditional
  394. .Bx
  395. behavior of converting arguments of numeric formats not beginning
  396. with a digit to the ASCII
  397. code of the first character is not supported.
  398. .Sh SEE ALSO
  399. .Xr echo 1 ,
  400. .Xr sh 1 ,
  401. .Xr printf 3
  402. .Sh STANDARDS
  403. The
  404. .Nm
  405. utility should be compliant with the
  406. IEEE Std 1003.1-2024 (“POSIX.1”) specification.
  407. .Pp
  408. The
  409. .Cm \ee ,
  410. .Cm \ec Ns Ar char ,
  411. and
  412. .Cm \ex Ns Ar hex-num
  413. backslash-escapes are extensions
  414. inspired by
  415. .Xr sh 1 Ns 's
  416. dollar-single-quote($'…') escapes.
  417. .Sh HISTORY
  418. The
  419. .Nm
  420. command appeared in
  421. .Bx 4.3 Reno .
  422. It is modeled
  423. after the standard library function,
  424. .Xr printf 3 .
  425. .Sh CAVEATS
  426. ANSI hexadecimal character constants were deliberately not provided.
  427. .Pp
  428. Trying to print a dash ("-") as the first character causes
  429. .Nm
  430. to interpret the dash as a program argument.
  431. .Nm --
  432. must be used before
  433. .Ar format .
  434. .Pp
  435. If the locale contains multibyte characters
  436. (such as UTF-8),
  437. the
  438. .Cm c
  439. format and
  440. .Cm b
  441. and
  442. .Cm s
  443. formats with a precision
  444. may not operate as expected.
  445. .Sh BUGS
  446. Since the floating point numbers are translated from ASCII
  447. to floating-point and then back again, floating-point precision may be lost.
  448. (By default, the number is translated to an IEEE-754 double-precision
  449. value before being printed.
  450. The
  451. .Cm L
  452. modifier may produce additional precision, depending on the hardware platform.)
  453. .Pp
  454. The escape sequence \e000 is the string terminator.
  455. When present in the argument for the
  456. .Cm b
  457. format, the argument will be truncated at the \e000 character.
  458. .Pp
  459. Multibyte characters are not recognized in format strings (this is only
  460. a problem if
  461. .Ql %
  462. can appear inside a multibyte character).