mirror of https://github.com/KLayout/klayout.git
12 lines
139 B
Bash
12 lines
139 B
Bash
|
|
#!/bin/sh -e
|
||
|
|
|
||
|
|
LANG=C
|
||
|
|
export LANG
|
||
|
|
|
||
|
|
for t in *.ot; do
|
||
|
|
out=`echo $t | sed 's/.ot$/.oas/'`
|
||
|
|
echo "$t -> $out"
|
||
|
|
./mkoasis.tcl $t $out
|
||
|
|
done
|
||
|
|
|