|
Hi,
This line: printf "%9-s" ${st} is incorrect, that should be:
printf "%-9s" ${st} the - left adjusts and I do believe it should be on the left of the digit.
I do find it strange that solaris doesn't complain about it...... Have to try that at work.
Anyway, hope this helps.
|