#!/bin/bash
#
# This is an example diskchange-script
#
# $1 is the cdrom-device e.g. /dev/sr0

echo
echo
echo "Disk full!!"
eject $1
echo "Please replace and press RETURN"
echo 
echo
read 

