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|
link|improve this question

3  
You tagged this with printf, so you pretty much knew the answer already. Why not check out how printf works? – Dan Fego Jan 24 at 21:06
feedback

3 Answers

up vote 4 down vote accepted

You can use the printf command, like this:

printf "%-10s |\n" "$txt"

The %s means to interpret the argument as string, and the -10 tells it to left justify to width 10 (negative numbers mean left justify while positive numbers justify to the right). The \n is required to print a newline, since printf doesn't add one implicitly.

Note that man printf briefly describes this command, but the full format documentation can be found in the C function man page in man 3 printf.

link|improve this answer
Sorry about that. – Jaypal Singh Jan 24 at 21:11
@Jaypal, I have no idea what just happened or why, but I'm sure it's not your fault :) – spatz Jan 24 at 21:13
feedback

bash contains a printf builtin

txt=1234567890
printf "%-10s\n" "$txt"
link|improve this answer
feedback

You can use the - flag for left justification.

Example:

[jaypal:~] printf "%10s\n" $txt
     hello
[jaypal:~] printf "%-10s\n" $txt
hello    
link|improve this answer
Heh, battle of the RSS feeds – SiegeX Jan 24 at 21:07
LOL, I ended up adding an example to spatz solution. Oh man this is getting crazy. – Jaypal Singh Jan 24 at 21:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.