通过管道将 Screen 传输至 PHP(或任何与此相关的函数)
我正在寻找一种将 *nix screen
命令的输出通过管道传输到另一个程序的方法。理论上我希望能够做类似的事情: screen -S 测试 | php testscript.php 和 testscript.php 通过 php://stdin 接收它 不过,如果有必要,我愿意接受其他选择。
I'm looking for a way to pipe the output of the *nix screen
command to another program. In theory I would like to be able to do something like:screen -S test | php testscript.php
and testscript.php receive it through php://stdin
However I am open to other options if necessary.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
命令行: screen -S test |/path/to/php/script.php
使用户脚本文件 chmod 为 755
command line: screen -S test |/path/to/php/script.php
makes user script file is chmod to 755