What does %.6d mean in:
printf("%s.%.6d len:%d ", timestr, header->ts.tv_usec, header->len);
Is it a typo?
It seems %.6d is the same as %6d.
|
What does
Is it a typo? It seems |
||||
Example:
outputs:
|
|||||||
|
|
The former will pad with zeros, the latter with spaces.
Produces the following output,
|
|||
|
|
printf '%.6d\n' 1234in bash. – Mike DeSimone May 7 '10 at 13:21