Files
klayout/testdata/oasis/mkall.sh
T
Matthias Koefferlein dd84e64446 Fixed an issue with the OASIS reader (unused cells popped up as dummy top levels)
This happens when OASIS declares a cell name without actually using it.
The intended behavior is to drop such cells.
2020-12-30 23:37:01 +01:00

12 lines
145 B
Bash
Executable File

#!/bin/sh -e
LANG=C
export LANG
for t in *.ot; do
out=`echo $t | sed 's/.ot$/.oas/'`
echo "$t -> $out"
tclsh ./mkoasis.tcl $t $out
done