or download this
###################################################################
# This subroutine pads 'txt' on the right to length 'len'.
...
$len =~ s/^A//i; # Remove 'A' that system "pack" function uses.
return sprintf("%s%s",$txt, ' 'x(($len-length($txt))));
}