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.
我需要编写 Ant 构建脚本来在 linux 环境中安装软件。我写了类似的东西
<exec dir="${dir}" executable="/bin/sh"> <arg value="installsoftware.sh"/> </exec>
但是我得到的问题是“您必须具有管理员或 root 权限才能执行”。我需要使用 Sudo 运行安装并提供执行 installsoftware.sh 的密码。
有人可以帮助我编写 ant 脚本来调用 sudo 类型的安装吗?
提前致谢
如何将表和 sudo 转换为 root 并以 root 身份运行安装,即
sudo ant -f /path/to/build.xml install