期待来自 std::cin (Unix C++) 的输入

发布于 2024-10-20 23:17:37 字数 378 浏览 3 评论 0原文

可能的重复:
检测 stdin 是否是 C 中的终端或管道/C++/Qt?

我正在编写一个命令行应用程序,它期望数据作为命令行参数或来自 cin。

有没有办法检查用户是否在应用程序中传输了一些数据($ ./myapp < test.txt),并且仅在没有时显示键盘输入提示?

如果我正在检查 !cin.good() / cin.eof() 等,则提示永远不会出现。

Possible Duplicate:
Detect if stdin is a terminal or pipe in C/C++/Qt?

I'm writing a command line application that expects data as either a command line argument, or from cin.

Is there a way to check if the user piped some data in the application ($ ./myapp < test.txt), and only display a prompt for keyboard input if not?

If I'm checking for !cin.good() / cin.eof() etc., the prompt will never appear.

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

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

发布评论

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

评论(2

清醇 2024-10-27 23:17:37
isatty(STDIN_FILENO)

将返回标准输入是否是终端(tty),即交互式。

isatty(STDIN_FILENO)

will return whether standard input is a terminal (tty), i.e. interactive.

趁年轻赶紧闹 2024-10-27 23:17:37

也许你可以用 fstat(2) 和 S_ISFIFO 做点什么?

Perhaps you can do something with fstat(2) and S_ISFIFO?

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