如何在php中执行/home/scripts/test.sh文件
以前我已经将'test.sh'文件放在/ usr / bin中,并在我的php文件中调用
exec('test.sh ' . escapeshellarg($testString));
但出于安全考虑,我将.sh文件移动到/ home / scripts目录,在我的php中我这样调用
exec('/home/scripts/test.sh ' . escapeshellarg($testString));
但它现在不起作用。
请建议我如何实现这一目标。
/ home / scripts目录,shell脚本和用户:group运行php的权限是什么?
—
保罗