#!/bin/bash

for x in *.plot; do gnuplot $x; done
for x in *.eps; do epstopdf $x; done
