diff --git a/convert.sh b/convert.sh new file mode 100755 index 0000000..df924cb --- /dev/null +++ b/convert.sh @@ -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