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