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.
我开发了许多脚本(用 Perl 和 Bash 编写),然后作为管道出来。在此之前,我使用 Linux 终端运行脚本。现在,我想将该脚本/程序转换为可通过网络访问的工具。这意味着,我想在我的网络服务器中使用 Web GUI 移植程序。
由于我在这个领域很新,任何人都可以建议我这个东西被称为什么,以及如何做到这一点?也许,如果有任何此类努力的教程/课程,我希望你能在这里说明。
Perl 脚本可以由网络服务器处理,前提是您启用了处理程序。处理程序代表 Web 服务器调用 perl 解释器。因此,在 Web 请求中,Web 服务器查找处理程序并通过它分派请求。
关于 bash,您可以使用 CGI 处理程序。将 CGI 处理程序添加到与 bash 对应的 Web 服务器。它写出必要的标头并处理请求。
希望本教程对您有所帮助
http://modernperl.net/developers/web-application-development.html