Existem dois tipos de printf
. O fornecido por coreutils e aquele fornecido pelo Bash como um shell embutido.
$ type printf
printf is a shell builtin
$ /usr/bin/printf --help
Usage: /usr/bin/printf FORMAT [ARGUMENT]...
or: /usr/bin/printf OPTION
Print ARGUMENT(s) according to FORMAT, or execute according to OPTION:
...
Para obter ajuda sobre o built-in do Bash, use o comando help
:
$ help printf
printf: printf [-v var] format [arguments]
Formats and prints ARGUMENTS under control of the FORMAT.
...