9 lines
158 B
Plaintext
9 lines
158 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
simulator="$1"
|
||
|
|
if [ -z "$1" ] ; then
|
||
|
|
simulator="ngspice"
|
||
|
|
fi
|
||
|
|
|
||
|
|
../../bin/run_cmc_check clean_${simulator} $simulator | tee cmcqa_${simulator}.log
|