Re: ksh bug or just normal behaviour?

2023-08-02 Thread Thomas Frohwein
On Wed, Aug 02, 2023 at 12:14:51PM +, Thomas Schweikle wrote: > > > Am Mi., 02.Aug..2023 um 13:45:26 schrieb Peter N. M. Hansteen: > > On Wed, Aug 02, 2023 at 11:35:39AM +, Ioan Samarul wrote: > > > Can you please tell me if this is a bug or it is considered normal? > > > > > > $ set -A

Re: ksh bug or just normal behaviour?

2023-08-02 Thread Thomas Schweikle
Am Mi., 02.Aug..2023 um 13:45:26 schrieb Peter N. M. Hansteen: On Wed, Aug 02, 2023 at 11:35:39AM +, Ioan Samarul wrote: 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' $

Re: ksh bug or just normal behaviour?

2023-08-02 Thread Peter N. M. Hansteen
On Wed, Aug 02, 2023 at 11:35:39AM +, Ioan Samarul wrote: > 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 I strongly suspect you stumbled

ksh bug or just normal behaviour?

2023-08-02 Thread Ioan Samarul
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!