| 12345678910111213141516171819202122232425 | #!/bin/sh#PKG esound#INIT 75. /etc/rc.confcase $1 inautostart)	test x"${esd:-NO}" = x"NO" && exit 0	exec sh $0 start	;;start)	esd -d /dev/sound/dsp -public -tcp -nobeeps	;;stop)	pkill esd	;;restart)	sh $0 stop	sh $0 start	;;*)	echo "Usage: $0 {start | stop | restart}"	;;esacexit 0
 |