↧
Answer by Flimzy for Pass password to adduser command
You cannot do this with the adduser command, however you can with the underlying useradd command, if you have the crypted version of the password: useradd <username> -p <crypted password>...
View ArticlePass password to adduser command
Just wondering if it's possible to pass the password I want to use to the adduser command in ubuntu, so that it can be automated. I want to do something like this echo "password" | adduser test This...
View Article