I'd like to output hello worldhello world over 20 characters.
printf "%-20s :\n\n" 'hello world!!'
# Actual output
hello world!! :
# Wanted output
hello world!!========:
However, I don't want to complete with spaces but with "=" instead. How do I do that?