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