我正在使用以下命令检查 shell 脚本:
#!/bin/bash
echo "Content-Type: text/plain"
echo
echo "Time is:"
date
/usr/bin/firefox http://www.google.fr &
如果我在终端中运行脚本,我会得到日期,然后可以打开 firefox 浏览器。但是如果我使用浏览器(localhost/cgi-bin/scriptest)运行脚本,我会得到日期
Time is:
Mon Sep 9 14:18:47 CEST 2013
但是firefox浏览器没有打开。 如果我使用终端而不是从浏览器运行脚本,有谁知道为什么会出现 firefox 浏览器?任何解决方案?