home | O'Reilly's CD bookshelfs | FreeBSD | Linux | Cisco | Cisco Exam  


UNIX in a Nutshell: System V Edition

UNIX in a Nutshell: System V EditionSearch this book
Previous: Reference: print Chapter 11
The Awk Scripting Language
Next: Reference: rand
 

printf



printf

 [

format

 [

,

 

expression(s)

]]

Formatted print statement. Fields or variables can be formatted according to instructions in the format argument. The number of arguments must correspond to the number specified in the format sections.

format follows the conventions of the C-language printf statement. Here are a few of the most common formats:

%s

A string.

%d

A decimal number.

% n . m f

A floating point number; n = total number of digits. m = number of digits after decimal point.

%[-] nc

nc specifies minimum field length for format type c , while - justifies value in field; otherwise value is right justified.

format can also contain embedded escape sequences: \n (newline) or \t (tab) being the most common. Spaces and literal text can be placed in the format argument by quoting the entire argument. If there are multiple expressions to be printed, there should be multiple formats specified.

Example

Using the script:

{printf ("The sum on line %s is %d \n", NR, $1+$2)}

The following input line:

5   5

produces this output, followed by a newline:

The sum on line 1 is 10.


Previous: Reference: print UNIX in a Nutshell: System V Edition Next: Reference: rand
Reference: print Book Index Reference: rand

The UNIX CD Bookshelf Navigation The UNIX CD BookshelfUNIX Power ToolsUNIX in a NutshellLearning the vi Editorsed & awkLearning the Korn ShellLearning the UNIX Operating System