Sign in
foss-eda-tools
/
third_party
/
opencircuitdesign.com
/
open_pdks
/
e7d108d415f13f49a23b0bfa5e15ff02e5c713e5
/
.
/
runtime
/
changetech.sh
blob: 383aac66cf1c84ae9d112dfa70d08faba705dabb [
file
] [
log
] [
blame
]
#!/bin/sh
#
# Example file converts the techname in all magic database files.
for
i
in
`ls *.mag`
;
do
/
ef
/
efabless
/
bin
/
preproc
.
py
-
DEFXH035A
=
EFXH035B $i
>
tmp
.
out
mv tmp
.
out $i
;
done