X-Git-Url: http://git.pippins.net/embedvideo/.git/?a=blobdiff_plain;f=rip_dvd;h=ebcd87ff162d2e652ec0c60330d8e050534ea39c;hb=34adaf3ba8eb7c71cb13226ee0d711c3dbf43d18;hp=9e13ae37042121c2e18148ca20c972a190224a4b;hpb=f34156ef86753dd27309b3038b4b6fa60107422c;p=rip_dvd%2F.git diff --git a/rip_dvd b/rip_dvd index 9e13ae3..ebcd87f 100755 --- a/rip_dvd +++ b/rip_dvd @@ -40,6 +40,7 @@ typeset SCALE="" typeset CROP="" typeset profile="xvidvhq" typeset extension="" +typeset mailto="" typeset -i force_onepass_mode=0 typeset -i eject_disk=1 typeset -i keep_isofile=0 @@ -74,16 +75,16 @@ config="${0%/*}/rip_dvd.conf" found_config=0 # 1) /path/to/rip_dvd/script/rip_dvd.conf.dist -[ -e "${config}.dist" ] && found_config=1 && . ${config}.dist +[ -e "${config}.dist" ] && found_config=1 && . "${config}.dist" # 2) /path/to/rip_dvd/script/rip_dvd.conf -[ -e "${config}" ] && found_config=1 && . ${config} +[ -e "${config}" ] && found_config=1 && . "${config}" # 3) /etc/rip_dvd.conf -[ -e "/etc/rip_dvd.conf" ] && found_config=1 && . /etc/rip_dvd.conf +[ -e "/etc/rip_dvd.conf" ] && found_config=1 && . "/etc/rip_dvd.conf" # 4) $PWD/rip_dvd.conf -[ -e "rip_dvd.conf" ] && found_config=1 && . rip_dvd.conf +[ -e "$PWD/rip_dvd.conf" ] && found_config=1 && . "$PWD/rip_dvd.conf" # Check to make sure we found the config file if [ $found_config -eq 0 ]; then