如何在 Xcode4 中使用 stdin 重定向进行调试?
我正在制作一个命令行程序,它接受 stdin
。所以我期待这种用法。
my-program < sample-file
这效果很好。问题是我无法在 Xcode4 中指定 stdin 重定向。它有执行参数,但不支持 stdin
重定向。它看起来逃避了所有争论。
如何在 Xcode4 中调试 stdin
重定向?
I'm making a command-line program, and it accepts stdin
. So I expect this usage.
my-program < sample-file
This works well. Problem is I have no way to specify stdin
redirection in Xcode4. It has execution argument, but it doesn't support stdin
redirection. It looks escaping all arguments.
How can I debug stdin
redirection in Xcode4?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我意识到这个问题很古老,但以防万一其他人偶然发现它:在这个答案中有一个重定向
stdin
的解决方法:https://stackoverflow.com/a/13006633/1924459
I realize this question is ancient but in case someone else stumbles upon it: There's a workaround to redirecting
stdin
in this answer:https://stackoverflow.com/a/13006633/1924459