#!/bin/sh
for A in /dev/dvd /dev/dvd1 /dev/sr0; do
	if [ -e "$A" ]; then
		echo "$A"
		break
	fi
done
