]> git.scottworley.com Git - picsort/blobdiff - pics-preprocess
Find bash with env
[picsort] / pics-preprocess
index 6563cab5afb15d4d500d9d70da474b24b7c7525e..55b27179d99ba1d8eede4b7565557662d67337c7 100755 (executable)
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
 
 # Pass .NEF and .jpeg files as $@.
 # This makes many variants of each .NEF file at different exposure levels
@@ -6,6 +6,7 @@
 
 SMALLHEIGHT=700
 
+renice -n 19 $$
 
 for f;do
   if [[ "$f" == *.NEF ]];then
@@ -29,6 +30,7 @@ for f;do
     if [[ -s "sm/$f" ]];then
       echo "Skipping sm/$f"
     else
+      mkdir -p sm
       convert "$f" -geometry "x$SMALLHEIGHT" "sm/$f"
     fi
   fi