Home > Backend Development > PHP Tutorial > php命令执行shell脚本报错

php命令执行shell脚本报错

WBOY
Release: 2016-06-06 20:20:21
Original
1333 people have browsed it

出错原因:sort

具体命令 grep 'download' test.log |awk '{print $2}'|sort -r|uniq -c|sort -nr|head -n 10|less"

出错截图

php命令执行shell脚本报错

懂的话,帮忙解释下原因,PS:执行结果是正确的。

猜测:
sort先将该文件的内容写入一个临时文件,然后再排序和写输出结果。

补充说明:
百度上类似问题
http://wapiknow.baidu.com/question/466815745.html

回复内容:

出错原因:sort

具体命令 grep 'download' test.log |awk '{print $2}'|sort -r|uniq -c|sort -nr|head -n 10|less"

出错截图

php命令执行shell脚本报错

懂的话,帮忙解释下原因,PS:执行结果是正确的。

猜测:
sort先将该文件的内容写入一个临时文件,然后再排序和写输出结果。

补充说明:
百度上类似问题
http://wapiknow.baidu.com/question/466815745.html

  1. 你的 sort 程序哪里来的?已确认 GNU sort 8.24 不会报这种吵闹的错误。实际上 GNU coreutils 都从来没有这么笨过。

  2. 从 PHP 调用,你加 less 没有意义吧。才10行数据,你用 less 没有意义吧?

补充说明:
百度上关于编程技术的信息就是渣渣。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template