缺少“已读”使用 ssh 时 bash 中出现提示?

发布于 2024-09-05 04:00:25 字数 313 浏览 4 评论 0原文

请告诉我我在这里遗漏了一些非常明显的东西:

$ cat ~/bashplay/f
#!/bin/bash
read -p 'RDY> ' x
echo $x

$ ~/bashplay/f
RDY> direct execution
direct execution

$ ssh somehost ~/bashplay/f
indirect via ssh
indirect via ssh

注意遗漏的“RDY>”使用ssh时出现提示。当使用“readline”包时,我在 python 中看到同样的事情。有人知道为什么吗?

Please tell me I'm missing something really obvious here:

$ cat ~/bashplay/f
#!/bin/bash
read -p 'RDY> ' x
echo $x

$ ~/bashplay/f
RDY> direct execution
direct execution

$ ssh somehost ~/bashplay/f
indirect via ssh
indirect via ssh

Note the missing "RDY>" prompt when using ssh. I see the same thing in python when using the "readline" package. Anyone know why?

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

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

发布评论

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

评论(1

傲娇萝莉攻 2024-09-12 04:00:25

来自 man bash

-p提示符
显示标准错误提示,不带尾随 new-
行,然后再尝试读取任何输入。提示是
仅当输入来自终端时才显示。

使用 ssh 选项 -t 强制伪 tty 分配:

ssh -t somehost ~/bashplay/f

From man bash:

-p prompt
Display prompt on standard error, without a trailing new‐
line, before attempting to read any input. The prompt is
displayed only if input is coming from a terminal.

Use the ssh option -t which forces pseudo tty allocation:

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