#!/bin/bash
################################################################################
# NAME     : run_ngspice
# PURPOSE  : NGspice wrapper script
# AUTHOR   : Richard Booth
# DATE     : Sat Nov  9 11:11:02 2013
# -----------------------------------------------------------------------------
# NOTES    : 
################################################################################
ifile=$1 ofile=$2 rfile=$3
ngspice=/opt/local/bin/ngspice
$ngspice -b $ifile -o $ofile -r $rfile
