#! /bin/sh

# Use the WRspice printtoraw program to generate loadable rawfiles from
# the print output provided by Berkeley.

for a in *.out; do
    echo "printtoraw $a > ${a%out}raw"
    /usr/local/share/xictools/bin/printtoraw $a > ${a%out}raw
done
