I'm running a remote bash script (using ssh -t 'bash doscript.sh'). In "doscript.sh" I have a sudo su anotheruser. At that point, the script seems to push a shell and I'm left in that "interactive" script and the rest of my script (doscript.sh) doesn't run unless I type "exit". Is there a workaround that gets around this problem?
Thanks in advance.
Here is the contents of my test script "doscript.sh":
sudo su diy
cd
pwd
whoami
exit
whoami