Re: readline5 bug report

2005-12-15 Thread S.Coffin
Chet: A month ago I sent you this mail reporting a problem with readline 5.0. I did not archive your reply, but I recall you said it would be fixed "in the next release of readline." Now I have tested readline 5.1, and I find that this behavior is unchanged. Is there anything I can do to help s

Re: HERE document mystery

2005-12-15 Thread Paul Jarc
"Com MN PG P E B Consultant 3" <[EMAIL PROTECTED]> wrote: > echo THIS DOES NOT WORK > foo=$(cat exp_test < V=1234 > abcd > BAD 0. Since you passed a file name to cat, it will ignore stdin. 1. Since the here-document belongs to the command in $(), the here-document must also be entirely inside $

HERE document mystery

2005-12-15 Thread Com MN PG P E B Consultant 3
Is this a bug, or just my misunderstanding about the scope of the "HERE" operator (<<)? Consider the following program: echo THIS WORKS cat