Tim Edwards | 55f4d0e | 2020-07-05 15:41:02 -0400 | [diff] [blame] | 1 | #!/bin/sh |
2 | # | ||||
3 | # Example file converts the techname in all magic database files. | ||||
4 | |||||
5 | for i in `ls *.mag` ; do | ||||
6 | /ef/efabless/bin/preproc.py -DEFXH035A=EFXH035B $i > tmp.out | ||||
7 | mv tmp.out $i ; | ||||
8 | done | ||||
9 |