objsExclude.tcl
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:0k
源码类别:

VxWorks

开发平台:

C/C++

  1. # objsExclude.tcl
  2. #
  3. # modification history
  4. # --------------------
  5. # 01a,24oct01,sn   wrote
  6. # DESCRIPTION
  7. # ar t <lib> | wtxtcl objsExclude.tcl <exclusion-list>
  8. # Output the result of excluding the objects specified
  9. # in <exclusion-list>> from the list of objects contained
  10. # in <lib>.
  11. while {![eof stdin]} {
  12.     gets stdin obj
  13.     set include 1
  14.     foreach exclude_obj $argv {
  15. if {$obj == $exclude_obj} {
  16.     set include 0
  17.     break
  18. }
  19.     }
  20.     if $include {
  21. puts $obj
  22.     }
  23. }