Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > gnu.bash.bug > #11614
| From | Geir Hauge <geir.hauge@gmail.com> |
|---|---|
| Newsgroups | gnu.bash.bug |
| Subject | Re: read and env variables + POSIX => SEGFAULT |
| Date | 2015-10-11 12:59 +0200 |
| Message-ID | <mailman.83.1444561176.7904.bug-bash@gnu.org> (permalink) |
| References | <CAAZkfoJuwe4o1rPQrfB-vxqeAaBX-=9NPWgv2uiOPdHq7L8g+g@mail.gmail.com> <5619D0F1.6080904@tlinx.org> |
On Sat, Oct 10, 2015 at 08:01:05PM -0700, Linda Walsh wrote:
> # this is odd: 2vars with content for 2:
> >unset a b
> >a= b= read a b <<< x y
> >declare -p a b
> declare -- a="x"
> declare -- b=""
>
> # -- where did "y" go?
read a b <<< x y
is the same as
read a b y <<< x
If you escape the space, to make it literal instead of syntactical, you'll get
the expected result:
$ a= b= read a b <<< x\ y
$ declare -p a b
declare -- a="x"
declare -- b="y"
Back to gnu.bash.bug | Previous | Next | Find similar
Re: read and env variables + POSIX => SEGFAULT Geir Hauge <geir.hauge@gmail.com> - 2015-10-11 12:59 +0200
csiph-web