mirror of
https://github.com/KLayout/klayout.git
synced 2026-08-31 10:06:28 +02:00
This happens when OASIS declares a cell name without actually using it. The intended behavior is to drop such cells.
12 lines
145 B
Bash
Executable File
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
|
|
|