remove all accents from pager links
[webpac] / run.sh
diff --git a/run.sh b/run.sh
index 7ce7930..11f68ce 100755 (executable)
--- a/run.sh
+++ b/run.sh
@@ -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'`
 
-./isis2xml.pl | swish-e -S prog -c swish_isis.conf
+# 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