You didn't tell us what is your Unix and your shell. The problem lies probably in the leading 0
which instructs printf
to interpret the number as an octal number, which it can't be (due to the 8 and 9 digits).
Just remove the leading 0
.
You didn't tell us what is your Unix and your shell. The problem lies probably in the leading 0
which instructs printf
to interpret the number as an octal number, which it can't be (due to the 8 and 9 digits).
Just remove the leading 0
.