X-Git-Url: http://git.scottworley.com/picsort/blobdiff_plain/0f88946688d3ba2ffb20cf5d391ecc7a22fac7e9..9ac8dac07bfb3f58231b879ffe36f6abe41ed8df:/pic-mv diff --git a/pic-mv b/pic-mv index b84390c..92444da 100755 --- a/pic-mv +++ b/pic-mv @@ -28,6 +28,7 @@ out="$destdir/$name $number.jpeg" if [[ "$file" == *.NEF ]];then base="${file%.NEF}" + NEFout="$destdir/$name $number.NEF" if [[ "$rotate" ]];then numeric_exposure=$(dc <<< "2k $exposure 4 / 3.5-p") pics-run-ufraw "$numeric_exposure" "$file" "$out" "$rotate" @@ -35,10 +36,12 @@ if [[ "$file" == *.NEF ]];then mv -vi "$exposure/$base.jpeg" "$out" fi touch -r "$file" "$out" - mv -vi "$file" "$destdir/$name $number.NEF" + mv -vi "$file" "$NEFout" + chmod 644 "$NEFout" else if [[ "$rotate" ]];then sed -i "s/^# ROBOTS_INSERT_THINGS_HERE\$/\"$name $number.jpeg\" => $rotate,\n&/" "$destdir/rotations.php" fi mv -vi "$file" "$out" fi +chmod 644 "$out"