标签: linux bash shell
我有一个非root用户euser,并且有一定的密码。
我也在写一个shell脚本,首先我需要通过euser登录然后运行安装程序。
Shell脚本内容 -
/bin/bash su - newuser cd installdir ./install.sh
当这个脚本执行时,它会给出错误 -
Password: su: Authentication failure**
如何避免此错误并使我的脚本正常工作?
答案 0 :(得分:0)