#!/bin/bash
if ps -C pd.release 
then
	echo pd already running
else
	pd -nogui test-mole.pd&
fi
