--- trunk/run.sh 2003/07/08 22:13:56 81 +++ trunk/run.sh 2003/07/11 20:58:06 86 @@ -1,9 +1,23 @@ #!/bin/sh -#cd /data/isis_data/ebsco-marc -#wget -m -nH -i in +dir=`dirname $0` +if [ "$dir" == "." ] ; then + dir=`pwd` +fi -cd /data/webpac +week=`date +%Y%w` +last_week=`cat $dir/.week 2>/dev/null || echo 'none'` + +# do EBSCO update once a week +if [ "$week" != "$last_week" ] ; then + cd /data/isis_data/ebsco-marc +# wget -m -nH -i in + echo "$week" > $dir/.week +else + echo "EBSCO already updated this week..." +fi + +cd $dir ( ./all2xml.pl | swish-e -S prog -c swish_isis.conf ) 2>&1 | tee log