-
-
Save brin100/58c32032b953e0f7b9ef to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
SUBJECT="DVD is done ripping" | |
EMAIL="[email protected]" | |
EMAILMESSAGE="./emailmessage.txt" | |
while [ 1 ] | |
do | |
echo "Waiting for new disk.." | |
while [[ `udisks --show-info /dev/sr0 | grep -c "has media: *1"` == "0" ]] | |
do | |
blah="blah" | |
done | |
label=`udisks --show-info /dev/sr0 | grep -Po "label:\s+[^\s]+" | grep -Po "[^\s]+$"` | |
echo "Your DVD '$label' has finished ripping "> $EMAILMESSAGE | |
mount /dev/sr0 /home/pi/dvdrom | |
vobcopy -l -o /home/pi/storage/dvd-rips/ | |
/usr/bin/mail -s "$SUBJECT" "$EMAIL" < $EMAILMESSAGE | |
umount /dev/sr0 | |
eject | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment