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.
我有几个可以在 Unix 机器终端上运行的 shell 脚本。
我需要能够从浏览器运行这些并显示连续日志,例如 jenkins 如何更新构建日志输出。
关于如何实现这一点的任何想法?
根据脚本的复杂性,您可以简单地使用“构建自由风格的软件项目”设置 jenkins 作业,然后添加构建步骤“执行 shell”。然后,您可以在 shell 中添加您的命令。
如果您只希望手动执行各种命令,您还可以将此作业设置为参数化,例如使用字符串参数(名称 cmd)并执行 shell 可以包含 ${cmd} - 这将使您完全灵活。