标签:att bsp sam ref for reac collect attr 文件操作
linux 下,经常会对用到文件操作,下面是一个用 tcl 写的文件操作示例脚本:
########################### ### sample script of file_change ##### set fix_file [open "fix.tcl" w] foreach_in_collection cel [get_cells *dummy_*] { set cel_name [get_attr [get_cells $cel] full_name] set ref_name [get_attr [get_cells $cel] ref_name] puts $fix_file "size_cell $cel_name $ref_name" } close $fix_file
标签:att bsp sam ref for reac collect attr 文件操作
原文地址:https://www.cnblogs.com/xiaoxie2014/p/9051572.html