On Sun, 12 Aug 2001, Wojciech Puchar wrote: > how to make passwd work in batch mode (from root) > > tried > > echo password\npassword|passwd user > > but it still inputs from console "passwd" reads from the tty, not standard input. Try passwd & echo password\npassword >`tty` or some variation thereof. Frederick