Shell Exec写入错误

时间:2015-12-08 00:45:29

标签: php

我正在遇到shell exec和tail的一些问题我试图运行以下

$x = 2;
$y = 5;

$command = "tail -n +$x $file | head -n $((Y-X+$y))";

$output = shell_exec($command);

然后我得到以下

tail: write error

然后是我要求的信息。

tail命令在shell中运行良好,但在php中运行时失败。

我尝试过使用相同结果的proc_open()和popen()。对此的任何帮助都会很棒。

0 个答案:

没有答案