#!/bin/sh

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