convert all spice models to xyce

This commit is contained in:
Edward Arthur Bingham 2023-06-07 12:04:46 -04:00
parent 0f50dcaab0
commit c4ae60e08c

13
convert.sh Executable file
View File

@ -0,0 +1,13 @@
#!/bin/bash
for FILE in $(find . -name '*.l'); do
echo "$FILE"
~/workspace/broccoli/pr/hspice2xyce $FILE > tmp
mv tmp $FILE
done
for FILE in $(find . -name '*.spice'); do
echo "$FILE"
~/workspace/broccoli/pr/hspice2xyce $FILE > tmp
mv tmp $FILE
done