通过 FIFO 重定向 stdin

发布于 2024-10-09 08:45:40 字数 321 浏览 7 评论 0原文

我正在 GNU/Linux 下运行一个服务器应用程序(用 Java 编写),它接收输入(我猜是来自标准输入)并解释它以运行一些命令。我不想在终端窗口内运行应用程序(我想运行守护进程),但我仍然希望能够随时输入命令。我想我也许可以使用 fifos 来做到这一点,所以我使用 mknod 创建了它。问题是cat fifofile > java...cat fifofile | java ... 由于某种原因失败并出现“找不到文件”错误。

仅使用 cat 进行读写,fifo 工作完美。

有什么方法可以解决这个问题,或者有其他方法可以实现相同的目标吗?

I'm running a server app (written in Java) under GNU/Linux which takes input (from stdin, I guess) and interprets it to run some commands. I dont want to run the app inside a terminal window (I'd like to run a daemon), but I'd still like to be able to input commands whenever I want to. I thought I might be able to do that using fifos, so I created it using mknod. The problem is cat fifofile > java... and cat fifofile | java ... fail with a "file not found" error for some reason.

Using only cat to read and write and the fifo works flawlessly.

Is there any way to fix this, or any other way to achieve the same goal?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

蛮可爱 2024-10-16 08:45:40

那么,我的世界?做到这一点的最佳方法是为应用程序的控制台部分提供一个真正的 tty。 screen 是一种简单的方法。

So, Minecraft? The best way to do this is to have a bona-fide tty for the console part of the application. screen is an easy way to do that.

前事休说 2024-10-16 08:45:40

你有没有尝试过java < fifo文件?像 exec 3<&0; 这样的东西怎么样? exec 0

你用什么外壳?如果您使用的 shell 支持进程替换或协进程,您也许能够使用它们。

Have you tried java < fifofile? What about something like exec 3<&0; exec 0<fifofile; java?

What shell are you using? You might be able to use process substitution or coprocesses if you're using a shell that supports them.

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