X-Git-Url: http://git.scottworley.com/picsort/blobdiff_plain/bb17aed57d1c495a50f1e4f2b1e02080bda0ea72..95201e91c133b88c97fd23d56481aa47ca161ccf:/pics-preprocess?ds=sidebyside diff --git a/pics-preprocess b/pics-preprocess index a67f460..ec66abf 100755 --- a/pics-preprocess +++ b/pics-preprocess @@ -1,13 +1,20 @@ -#!/bin/bash +#!/usr/bin/env bash # Pass .NEF and .jpeg files as $@. # This makes many variants of each .NEF file at different exposure levels # and makes reduced-size versions for faster browsing. +MINFREESPACE=$((10 * 1024 * 1024)) # 10GiB in KiB + SMALLHEIGHT=700 +renice -n 19 $$ for f;do + if (( "$(df -k . | awk 'NR == 2 { print $4 }')" < $MINFREESPACE ));then + echo "Out of disk space" + break + fi if [[ "$f" == *.NEF ]];then for level in {10..30};do mkdir -p {,sm/}"$level"