将数据通过管道传输到需要 TTY(终端)的 Linux 程序

发布于 2024-10-03 16:57:34 字数 192 浏览 4 评论 0原文

我在 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 技术交流群。

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

发布评论

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

评论(2

巾帼英雄 2024-10-10 16:57:34

unbuffer 是expect 的一部分(在Ubuntu Lucid 上是sudo apt-get install Expect-dev),可以欺骗程序认为它已连接到TTY。

$ tty 
/dev/pts/3
$ echo | tty 
not a tty
$ echo | unbuffer tty 
/dev/pts/11

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.

$ tty 
/dev/pts/3
$ echo | tty 
not a tty
$ echo | unbuffer tty 
/dev/pts/11
臻嫒无言 2024-10-10 16:57:34

您可以使用 socat 来实现此目的:echo your stdin strings | socat EXEC:"your_program",pty STDIO >/stdout_file

例如使用 bashecho ls | socat EXEC:'bash',pty STDIO >/tmp/ls_out

或者如此处所述,使用docker运行程序:

# Run the docker task, here bash, in background
docker run -it --rm --name test ubuntu &
# Send "ls -la" to the bash running inside docker
echo 'ls -la' | socat EXEC:'docker attach test',pty STDIN
# Show the result
docker logs test

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:

# Run the docker task, here bash, in background
docker run -it --rm --name test ubuntu &
# Send "ls -la" to the bash running inside docker
echo 'ls -la' | socat EXEC:'docker attach test',pty STDIN
# Show the result
docker logs test
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文