Linux printf Command
What is Linux printf Command?
In this tutorial we learn how to use printf command in Linux. printf command is printf - format and print data.
printf Syntax
printf FORMAT [ARGUMENT]...
printf OPTIONprintf Examples
printf Command Manual / Help
We can use man and info command to see the manual page of printf command. printf command also have --help option to show list of options.
To open man page for printf command we can use command below. To exit man or info page you can press q.
man printfTo open info page for printf command we can use command below.
info printfTo open help page from printf command we can run command below.
printf --helpLinux printf Command Source Code
You can find printf command source code from the folowing repositories:
- printf source code on GitHub
- printf source code on GNU Savannah cgit
- printf source code on GNU Savannah gitweb
Related Linux Commands
You can read tutorials of related Linux commands below:
Summary
In this tutorial we learn how to use printf in Linux with practical examples. Visit our Linux Commands guide to learn more about using command line interface in Linux.