this repo has no description
at v2 9 lines 233 B view raw
1#!/bin/sh 2# Run all SPICE netlists in this directory. 3# Results are written here too (wrdata uses relative paths). 4# Usage: cd sim && sh run.sh 5cd "$(dirname "$0")" 6for sp in *.sp; do 7 echo "--- $sp ---" 8 ngspice -b "$sp" 9done