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.
如果我想使用 CGI 脚本在运行 Web 服务器的机器上启动应用程序,我该怎么做?例如,我想在单击链接时运行命令行音频播放器。我能够设置一个启动 mplayer 的简单 cgi 脚本,但它只在浏览器中显示输出,主机上没有实际的音频播放。
// 编辑:现在我明白了,你想要做什么。在 php 中它会是这样的:
system("mplayer /tmp/yourfile.mp3 &");
perl 中的功能应该很相似。