Re: Expansion of ${!x*} and [EMAIL PROTECTED]

2006-11-08 Thread Chet Ramey
> ${!prefix*} > [EMAIL PROTECTED] > Expands to the names of variables whose names begin with prefix, > separated by the first character of the IFS special variable. > > --- > From this, I'd expect both forms to have the same output. > Is this what is intended and what I

Re: Expansion of ${!x*} and [EMAIL PROTECTED]

2006-11-08 Thread Chet Ramey
Matthew Woehlke wrote: > Linda Walsh wrote: >> The manpages for "my" bash's (3.1.11 on Linux and 3.1.17 on cygwin/i686), >> under Parameter Expansion, say: >> >> >> ${!prefix*} >> [EMAIL PROTECTED] >>Expands to the names of variables whose names begin with prefix, >>separate

Re: Expansion of ${!x*} and [EMAIL PROTECTED]

2006-11-07 Thread Matthew Woehlke
Linda Walsh wrote: The manpages for "my" bash's (3.1.11 on Linux and 3.1.17 on cygwin/i686), under Parameter Expansion, say: ${!prefix*} [EMAIL PROTECTED] Expands to the names of variables whose names begin with prefix, separated by the first character of the IFS special v

Expansion of ${!x*} and [EMAIL PROTECTED]

2006-11-07 Thread Linda Walsh
The manpages for "my" bash's (3.1.11 on Linux and 3.1.17 on cygwin/i686), under Parameter Expansion, say: ${!prefix*} [EMAIL PROTECTED] Expands to the names of variables whose names begin with prefix, separated by the first character of the IFS special variable. --- From t