No. That would have been to simple. That is how I handle all the normal commands.
/ Peter Bortas
Previous text:
2003-02-15 14:31: Subject: setsid
Passwd requires a tty?
It's not enough just working with stderr and stdin?
object f=Stdio.File(); object g=Stdio.File(); object p = Process.create_process( ({ "/usr/bin/passwd", luser }), ([ "stderr":f->pipe(), "stdin":g->pipe() ]) ); g->write("bogus\n"); g->write("bogus\n"); g->close();
...f->read()...
/ Mirar