X-Git-Url: http://git.pippins.net/embedvideo/.git/?a=blobdiff_plain;f=rip_dvd.wrap;h=e9bcb632c0810bd5788358246dc8c051d94eb4ea;hb=5158c7d2734fc55140fe2992ca0cbbb6757ce3b1;hp=fdfee25d0fac2aa0407d57251f9ed82cbc2de49b;hpb=6994fa0d704833bb934b25281b9e62b1036affcc;p=rip_dvd%2F.git diff --git a/rip_dvd.wrap b/rip_dvd.wrap index fdfee25..e9bcb63 100755 --- a/rip_dvd.wrap +++ b/rip_dvd.wrap @@ -1,4 +1,19 @@ #!/bin/bash +# The purpose of this script is to encapsulate the calls +# made to the rip_dvd script. This is done to help distribute +# the resulting ripped files to the proper folders. This +# script is called from the mythtv menus for example with a +# smaller set of options. + +############################################## +# Don't run if a previous rip attempt is still running +SCRIPT_NAME=${0##*/} +MY_PID=$$ +ps -ef | grep $SCRIPT_NAME | grep -v grep | grep -v emacs | grep -v vi | grep -v "/bin/sh -c" | grep -v $MY_PID +if [[ $? == 0 ]]; then + echo -e "-E- Found an instance of this script already running. Aborting this additional attempt to rip...\n" + exit 1 +fi ############################################## # COMMAND LINE PROCESSING @@ -16,6 +31,18 @@ if [ -z "$dvdtype" ]; then usage fi +mydir=$(cd $(dirname $0) && pwd) +if [ -z "$ripcmd" ] +then + if [ -x "$mydir/rip_dvd" ] + then + ripcmd="$mydir/rip_dvd" + else + echo >&2 "Cannot find your rip_dvd command!" + exit 1 + fi +fi + ############################################################################## # Local Machine Settings: # Sources both the "default" conf file tracked by GIT (rip_dvd.conf.dist)