如何收集tcl中man命令的输出?
有人可以建议我如何收集 tcl 中 man 命令的输出吗?
我正在写:-
set hello [ man {command-name}]
当执行脚本时,程序会停止并且 man 命令开始在前台运行,提示用户 一次又一次“按 RETURN”,直到完成。
Can somebody suggest me, how to collect output of man command in tcl?
I am writing :-
set hello [ man {command-name}]
and when am executing the script, the program gets halted and
man commands start running in the foreground, prompting the user
to "press RETURN" again and again till it gets completed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只是缺少 exec 命令
在交互式 tcl 会话中设置 [man cmd-name]
,unknown
命令将拦截“man”命令并隐式对其执行执行操作。在这种情况下,“man”以某种方式知道您是交互式的,并通过 $PAGER 管道传输联机帮助页。You're just missing the exec command
When you do
set out [man cmd-name]
in an interactive tcl session, theunknown
command will intercept the 'man' command and implicitly perform an exec on it. In that scenario, 'man' somehow knows you're interactive and pipes the manpage through your $PAGER.