如何抑制TCL程序的输出消息?

时间:2014-07-25 19:39:51

标签: tcl

在我的TCL脚本中,我使用了几个我没有源代码的程序。所有这些过程都执行一些任务并输出大量消息。但我只是希望完成任务,我想要压制消息。有没有办法做到这一点。

所以例如我想运行这样的程序:

my_proc $arg1 $arg2 $arg3

并取消所有消息。任何变通方法/智能替代方案都值得赞赏。

更多信息:我使用自定义shell,将TCL文件作为参数并运行它。在这个自定义shell中,我可以访问一些我没有代码的TCL程序。

甚至有什么方法可以让脚本的输出转到文件而不是命令提示符(stdout)?

1 个答案:

答案 0 :(得分:5)

尝试在代码中更改puts

rename ::puts ::tcl_puts
proc puts args {}        ;# do nothing

然后,如果您想要打印某些内容,请使用tcl_puts

这有点像核选择。你可以得到更微妙的东西:

proc puts args {
    if {[llength $args] == 1} {
        set msg [lindex $args 0]
        # here you can filter based on the content, or just ignore it
        # ...
    } else {
        # in the 2a\-args case, it's file io, let that go
        # otherwise, it's an error "too many args"
        # let Tcl handle it
        tcl_puts {*}$args

        # should probably to stuff there so that errors look like
        # they're coming from "puts", not "tcl_puts"
    }
}

另一个想法:只是在你打电话的命令期间这样做:

proc noputs {args} {
    rename ::puts ::tcl_puts
    proc ::puts args {}

    uplevel 1 $args

    rename ::puts ""
    rename ::tcl_puts ::puts
}

noputs my_proc $arg1 $arg2 $arg3

演示:

$ tclsh
% proc noputs {args} {
    rename ::puts ::tcl_puts
    proc ::puts args {}

    uplevel 1 $args

    rename ::puts ""
    rename ::tcl_puts ::puts
}
% proc my_proc {foo bar baz} {
    lappend ::my_proc_invocations [list $foo $bar $baz]
    puts "in myproc with: $foo $bar $baz"
}
% my_proc 1 2 3
in myproc with: 1 2 3
% noputs my_proc a b c
% my_proc x y z
in myproc with: x y z
% set my_proc_invocations
{1 2 3} {a b c} {x y z}