Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > gnu.bash.bug > #15476 > unrolled thread

Is this a bug by any chance?

Started byGeorge R Goffe <grgoffe@yahoo.com>
First post2019-10-05 18:48 +0000
Last post2019-10-05 18:48 +0000
Articles 1 — 1 participant

Back to article view | Back to gnu.bash.bug

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Is this a bug by any chance? George R Goffe <grgoffe@yahoo.com> - 2019-10-05 18:48 +0000

#15476 — Is this a bug by any chance?

FromGeorge R Goffe <grgoffe@yahoo.com>
Date2019-10-05 18:48 +0000
SubjectIs this a bug by any chance?
Message-ID<mailman.1049.1570301325.2651.bug-bash@gnu.org>
Hi,

I just built the latest bash in an effort to determine if thie script shows a bug or a ufu. Can you help me please?

I was expecting to see:
12345

Best regards AND thanks for your help,

George...

#!./bash -xv
 x="1 2 3 4 5"
+ x='1 2 3 4 5'
 for z in "$x"
    do
       echo "$z"
    done
+ for z in "$x"
+ echo '1 2 3 4 5'
 1 2 3 4 5
 exit 0
+ exit 0

[toc] | [standalone]


Back to top | Article view | gnu.bash.bug


csiph-web