⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 objsexclude.tcl

📁 VXWORKS源代码
💻 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 + -