📄 objsexclude.tcl
字号:
# objsExclude.tcl## modification history# --------------------# 01a,24oct01,sn wrote# # DESCRIPTION# ar t <lib> | wtxtcl objsExclude.tcl <exclusion-list># Output the result of excluding the objects specified# in <exclusion-list>> from the list of objects contained# in <lib>.while {![eof stdin]} { gets stdin obj set include 1 foreach exclude_obj $argv { if {$obj == $exclude_obj} { set include 0 break } } if $include { puts $obj }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -