如何收集tcl中man命令的输出?

发布于 2024-11-08 05:02:18 字数 174 浏览 0 评论 0原文

有人可以建议我如何收集 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 技术交流群。

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

发布评论

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

评论(1

隐诗 2024-11-15 05:02:18

您只是缺少 exec 命令

set output [exec man cmd-name]

交互式 tcl 会话中设置 [man cmd-name]unknown 命令将拦截“man”命令并隐式对其执行执行操作。在这种情况下,“man”以某种方式知道您是交互式的,并通过 $PAGER 管道传输联机帮助页。

You're just missing the exec command

set output [exec man cmd-name]

When you do set out [man cmd-name] in an interactive tcl session, the unknown 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.

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