From 8c294704502f0abfb554baec7d372a9bf6a0f6c6 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Thu, 24 Nov 2011 09:55:21 -0800 Subject: limit number of created thumbnails per batch to 50 larger numbers caused the program to be killed automatically on dreamhost (where I host my web pages). --- create_thumbnails.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'create_thumbnails.sh') diff --git a/create_thumbnails.sh b/create_thumbnails.sh index 6174538..6bae6bb 100755 --- a/create_thumbnails.sh +++ b/create_thumbnails.sh @@ -54,8 +54,8 @@ done=0 offset=0 FILES="" -while [ $done -lt 200 ] ; do - echo "skipping $offset pics, getting 100 new pics to work on..." +while [ $done -lt 100 ] ; do + echo "skipping $offset pics, getting 50 new pics to work on..." # handle white space in filename correctly FILES=`sqlite3 $LOCALDB "select replace(base_uri||'/'||filename,' ','%20') from photos limit $offset,100"` @@ -98,5 +98,5 @@ while [ $done -lt 200 ] ; do fi #get ready to get the next 100 - offset=$((offset+100)) + offset=$((offset+50)) done -- cgit v1.2.3-18-g5258