Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望在我的 shell 脚本中间有以下内容。
--- sudo -u user1 cp /files ./ (as these files are only accessbile to user1) exit ---- continue as me .
问题是直到 sudo 它运行良好,sudo 之后的其余命令都没有执行。
您使用sudo不正确。尝试:
sudo
sudo -u user1 cp /files ./
没有必要将它分成两行(确实这样做是错误的)。“退出”退出你的脚本,所以它执行后什么都没有。