#!/bin/bash
set -e

rm -f doc/examples/*.ps

for i in doc/examples/*
do
  echo $i
  pmw $i
  echo testing existence of ${i}.ps
  test -f ${i}.ps
  echo ok
done
