On Sun, Dec 6, 2009 at 11:57 PM, Suraj Kurapati <[email protected]> wrote:
> if you run a program using the `and` keyword in a command list [...] then
> whatever text you type on your keyboard is not echoed to the screen.

I now noticed that this occurs for any command list in general.  Only
the first program in the command list echoes my keystrokes; the rest
do not.

s...@yantram ~> true ; bash -c 'read -p "type hello: "; echo $REPLY'
type hello: hello

s...@yantram ~> true ; bash -c 'read -p "type hello: "; echo $REPLY';
bash -c 'read -p "type world: "; echo $REPLY'
type hello: hello
type world: world

s...@yantram ~> bash -c 'read -p "type hello: "; echo $REPLY'; bash -c
'read -p "type world: "; echo $REPLY'
type hello: hello
hello
type world: world

------------------------------------------------------------------------------
Join us December 9, 2009 for the Red Hat Virtual Experience,
a free event focused on virtualization and cloud computing. 
Attend in-depth sessions from your desk. Your couch. Anywhere.
http://p.sf.net/sfu/redhat-sfdev2dev
_______________________________________________
Fish-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/fish-users

Reply via email to