Wednesday, August 02, 2023

ksh bug or just normal behaviour?

Hello to you all!

Can you please tell me if this is a bug or it is considered normal?

$ set -A test a b c d e f g h i
$ echo ${test[07]}
h
$ echo ${test[08]}
ksh: 08: bad number `08'
$ echo ${test[8]}
i

Thank you all!

No comments:

Post a Comment