I have a piece of code like this:
printf "%.s  "  $(seq 1 $count)
It actually belongs to an else condition and its job is to print out whitespaces $count times..
It works fine if I enter a string like this:
printf "%.shelloworld  "  $(seq 1 $count)
but not when i just put in whitespaces.
Any work arounds?
 
    