Given a text, $txt, how could I left justify it to a given width in Bash.
Example (width = 10):
If $txt=hello, I would like to print:
hello |
If $txt=1234567890, I would like to print:
1234567890|
|
Given a text, Example (width = 10): If
If
|
|||
|
You can use the
The Note that |
|||||||
|
|
You can use the Example:
|
|||
printf, so you pretty much knew the answer already. Why not check out howprintfworks? – Dan Fego Jan 24 '12 at 21:06