#!/bin/sh

if [ `/sbin/pidof artsd` ] ; then
	artsdsp "$@"
else
	if [ `/sbin/pidof esd` ]; then
		esddsp "$@"
	else
		"$@"
	fi
fi
