On Wed, Nov 12, 2008 at 6:40 PM, HDC <[EMAIL PROTECTED]> wrote:
> I need migrate a script to a OpenBSD server, this work ok, but in the
> script the some input parameters must be completed without echo in the
> terminal.
>
> I not found this in ksh,

a couple of ideas

1) do

stty -echo
read foo bar
stty echo

though in case you hit ^c in that read, that may lead to a tty with no
echo. perhaps may be solved with trap.

2) write a tiny program read-s, which will do that

Reply via email to