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!
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!