How to provide password directly to the sudo su -<someuser> in shell scripting
I got a requirement to automate in shell script for sudo su -<someuser>
which asks for password.
How to provide password directly to the sudo su - in shell scripting for IBM AIX servers.
I have tried using
echo <password> | sudo su -<someuser>
it did not work. kindly help on this.
Use -S
man sudo
:
-S, --stdin Write the prompt to the standard error and read the password from the standard input instead of using the terminal device. The password must be followed by a newline character.
so you can use:
echo <myPassword> | sudo -S su <someuser>
Edit: This above did not work on a testing Ubuntu. It seems like the second command "su " is to fast after prompting password query.
I did a workaround to wait a second so the echoed password could be filled in, and then second sudo should be able, to run sudo su - foobar
:
echo "password" | sudo -S sleep 1 && sudo su - foobar
With expect
. A stub command may be like this:
expect -c '
log_user 0
spawn /usr/bin/sudo su - someuser
expect "*: "
send "thepassword\n"
interact
'
See this answer to a similar question.
Another approach is with sudo -A
.
- Create a file, say
pass
. - Make the file accessible only to you:
chmod go-rwx pass
. - Make it executable to you:
chmod u+x pass
-
Edit the file and make it a script that prints your password:
#!/bin/sh printf '%s\n' 'yourpassword'
-
Now you can do this:
SUDO_ASKPASS="./pass" sudo -A su - someuser
Note: in this case you provide password for sudo
(not for su
); use the one sudo
wants.