On Sun, Sep 20, 2009 at 7:57 PM, Raj Mathur <[email protected]> wrote:
> echo -n "Hit space to continue: " > read __dummy > it could be something like this #!/bin/bash ... ... echo -n "Hit space to continue" read -n 1 dummy Which will cause bash to return after exactly one char is entered Regards Manvendra http://www.indimail.org -- http://mm.glug-bom.org/mailman/listinfo/linuxers

