Linux and Unix printf command
Quick links
About printf
Syntax
Examples
Related commands
Linux and Unix main page
Write formatted output.
printf format [ argument]
| format | A string describing the format to use to write the remaining operands. |
| argument | The strings to be written to standard output, under the control of format |
printf "hello"
Returns hello to the screen.
