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


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

herestring brace expansion

Started byEliran Gonen <eliran.gonen@gmail.com>
First post2018-09-02 23:55 +0300
Last post2018-09-02 23:55 +0300
Articles 1 — 1 participant

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


Contents

  herestring brace expansion Eliran Gonen <eliran.gonen@gmail.com> - 2018-09-02 23:55 +0300

#14545 — herestring brace expansion

FromEliran Gonen <eliran.gonen@gmail.com>
Date2018-09-02 23:55 +0300
Subjectherestring brace expansion
Message-ID<mailman.312.1535925982.1284.bug-bash@gnu.org>
Configuration Information [Automatically generated, do not change]:
Machine: x86_64
OS: linux-gnu
Compiler: gcc
Compilation CFLAGS:  -DPROGRAM='bash' -DCONF_HOSTTYPE='x86_64' -DCONF_OSTYPE='linux-gnu' -DCONF_MACHTYPE='x86_64-pc-linux-gnu' -DCONF_VENDOR='pc' -DLOC$
uname output: Linux UU8CPLAE 4.4.0-17134-Microsoft #137-Microsoft Thu Jun 14 18:46:00 PST 2018 x86_64 x86_64 x86_64 GNU/Linux
Machine Type: x86_64-pc-linux-gnu

Bash Version: 4.3
Patch Level: 48
Release Status: release

Description:
	“Here Strings” section in the bash(1) manual page claims that “word undergoes brace expansion” while it does not.

Repeat-By:
	$ read -a arr <<< x{a{a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z},b{a,b,c,d,e,f,g,h,i,j,k,l,m,n,o}}
	$ echo ${arr[*]}
x{a{a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z},b{a,b,c,d,e,f,g,h,i,j,k,l,m,n,o}}

[toc] | [standalone]


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


csiph-web