将数据通过管道传输到需要 TTY(终端)的 Linux 程序
我在 Linux 中有一个程序,如果它的 stdin/stdout 不是 TTY(终端设备),它就拒绝运行。是否有一个易于使用的工具可以创建 PTY,使用新创建的 TTY 启动程序,并通过 stdin/stdout 复制所有数据?
该用例不是交互式的,而是脚本化的。我正在寻找最轻量级的解决方案,最好不创建 TCP 连接,并且不需要安装太多其他工具和库。
I have a program in Linux which refuses to run if its stdin/stdout is not a TTY (terminal device). Is there an easy-to-use tool which will create a PTY, start the program with the newly created TTY, and copy all data over stdin/stdout?
The use case is not interactive, but scripting. I'm looking for the most lightweight solution, preferably not creating TCP connections, and not requiring too many other tools and libraries to be installed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
unbuffer
是expect 的一部分(在Ubuntu Lucid 上是sudo apt-get install Expect-dev
),可以欺骗程序认为它已连接到TTY。unbuffer
, part of expect (sudo apt-get install expect-dev
on Ubuntu Lucid), can fool a program into thinking it's connected to a TTY.您可以使用 socat 来实现此目的:echo your stdin strings | socat EXEC:"your_program",pty STDIO >/stdout_file
例如使用
bash
:echo ls | socat EXEC:'bash',pty STDIO >/tmp/ls_out
或者如此处所述,使用
docker
运行程序:You can use
socat
for this:echo your stdin strings | socat EXEC:"your_program",pty STDIO >/stdout_file
For example with
bash
:echo ls | socat EXEC:'bash',pty STDIO >/tmp/ls_out
Or as described here, for a program run with
docker
: