#Right align

awk 'BEGIN{printf "|%10s|\n", "hello"}'
| hello|

#Left align

awk 'BEGIN{printf "|%-10s|\n", "hello"}'
|hello |
Comments