ISQL 7.3 (SuSE):Ace 报告输出到多个文件或标准输出

发布于 2024-10-31 12:32:59 字数 134 浏览 0 评论 0原文

有谁知道我如何欺骗 Ace 输出到多个文件或一个文件并同时显示,而无需编写外部脚本?..即在 Ace 规范 OUTPUT REPORT TO PIPE 或 OUTPUT REPORT TO "filename.out" 中> /dev/tty01a

Does anyone know how I could trick Ace into outputing to more than one file or to a file and display simultaneously without having to write an external script?.. i.e. in the Ace spec OUTPUT REPORT TO PIPE or OUTPUT REPORT TO "filename.out" > /dev/tty01a

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

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

发布评论

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

评论(1

笑着哭最痛 2024-11-07 12:32:59

对于通过管道传输到多个文件,您可以使用:

OUTPUT
    REPORT TO PIPE "tee file2 >file1"

如果您愿意,您可以执行两个以上的文件,这得益于 tee 程序的功能。显然,如果您希望输出转到标准输出以及文件,则可以将其通过管道传送到 tee,而不需要“>”重定向。

如果使用以下命令,您可以将输出发送到寻呼机:

OUTPUT
    REPORT TO PIPE "tee file1 file2 | less"

For piping to multiple files, you can use:

OUTPUT
    REPORT TO PIPE "tee file2 >file1"

You can do more than two files if you want to, courtesy of the abilities of the tee program. Clearly, if you want the output to go to standard output as well as to a file, you pipe it to tee without the '>' redirection.

You can get the output to a pager if you use:

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