X-Git-Url: http://git.scottworley.com/picsort/blobdiff_plain/1365c024d315ebd2663e2b5c8303ae7447e9e85c..d6874f6c6a9f60aacee8cd43fd16f3e9b73b22ec:/pic-mv diff --git a/pic-mv b/pic-mv index 92444da..23da8c3 100755 --- a/pic-mv +++ b/pic-mv @@ -1,6 +1,9 @@ #!/bin/bash -destdir=/some/path # Optional: Fill this in here. +destdir= +if [[ -e .default-pic-mv-destdir ]];then + destdir=$( < .default-pic-mv-destdir ) +fi exposure= rotate= @@ -13,6 +16,11 @@ while getopts d:e:r: opt;do done shift `expr $OPTIND - 1` +if [[ -z "$destdir" ]];then + echo "Please specify a destdir with -d or .default-pic-mv-destdir" >&2 + exit 1 +fi + file="$1" name="$2"