Is there a way to read a lef+def from the command ...
# magic
m
Is there a way to read a lef+def from the command line without typing "lef read foo.lef" and "def read bar.def"?
t
Write a custom Tcl procedure and stick it in the .magicrc startup file or your home ~/.magicrc.
proc readlefdef {cell} {
lef read ${cell}.lef
def read ${cell}.def
}