Re: Question about bash read function and matching ESC

2003-10-10 Thread HdV
On Wed, 1 Oct 2003 [EMAIL PROTECTED] wrote: > Hi, > > I am trying to match the ESC key in bash. The code below works as > intended when I try to match a 'normal' key like 's' or so. But it will > not for the escape key. This makes me expect this has something to do > with the high-bit stuff, but I

Question about bash read function and matching ESC

2003-10-01 Thread HdV
Hi, I am trying to match the ESC key in bash. The code below works as intended when I try to match a 'normal' key like 's' or so. But it will not for the escape key. This makes me expect this has something to do with the high-bit stuff, but I haven't figured out how to work around it. Anyone have