GNU readline:如果输入不是交互式的,则避免在输出中出现提示字符串

发布于 2024-08-25 03:30:19 字数 225 浏览 4 评论 0原文

我有一个基于 readline 的应用程序,带有提示,但是我希望它在输入不是交互式时不显示。

$ ./readline-app < command-list > result
$ cat result
prompt> Output line 1
prompt> Output line 2
prompt>
$

这种情况如何让提示不打印呢?

I have a readline-based application with a prompt, however I'd like it to not show when the input is not interactive.

$ ./readline-app < command-list > result
$ cat result
prompt> Output line 1
prompt> Output line 2
prompt>
$

How can I make the prompt to not print in this case?

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

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

发布评论

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

评论(1

晨光如昨 2024-09-01 03:30:19

使用 isatty(3) 来确定 stdin 和/或 stdout 连接到 tty。

Use isatty(3) to determine whether stdin and/or stdout are connected to a tty.

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