通过管道将 Screen 传输至 PHP(或任何与此相关的函数)

发布于 2024-10-25 09:27:47 字数 167 浏览 2 评论 0原文

我正在寻找一种将 *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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ら栖息 2024-11-01 09:27:47
#!/usr/bin/php
<?php
$fd = fopen("php://stdin","r");
$foo = "";
while ( !feof($fd) ){
    $foo .= fread($fd,1024);
}


fclose($fd);

//rest of script

命令行: screen -S test |/path/to/php/script.php
使用户脚本文件 chmod 为 755

#!/usr/bin/php
<?php
$fd = fopen("php://stdin","r");
$foo = "";
while ( !feof($fd) ){
    $foo .= fread($fd,1024);
}


fclose($fd);

//rest of script

command line: screen -S test |/path/to/php/script.php
makes user script file is chmod to 755

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文