#!/bin/bash
DIR=`dirname $0`
cd $DIR
pic2plot -n -Tps $1 > tmp.ps
convert -background white -resize 150% tmp.ps $2
rm tmp.ps

