#!/bin/sh #script to regenerate expo photo collection BASEDIR=/home/expo WEBDIR=/home/expo #tidy up dangling symlinks first find ${WEBDIR}/webphotos -type l -print0 | xargs -0 --no-run-if-empty rm #config file location set in /etc/bins/binsrc, not here. bins -o scaled -e ${BASEDIR}/expofiles/photos ${WEBDIR}/webphotos > ${BASEDIR}/updatephoto.log 2>&1 # Line inserted to stop link-scanners complaining