rename update script to irspy-update.sh
authorWolfram Schneider <wosch@indexdata.dk>
Thu, 15 Apr 2010 11:53:30 +0000 (11:53 +0000)
committerWolfram Schneider <wosch@indexdata.dk>
Thu, 15 Apr 2010 11:53:30 +0000 (11:53 +0000)
bin/irspy-update.sh [new file with mode: 0755]
bin/irspy.sh [deleted file]

diff --git a/bin/irspy-update.sh b/bin/irspy-update.sh
new file mode 100755 (executable)
index 0000000..fea2758
--- /dev/null
@@ -0,0 +1,18 @@
+#!/bin/sh
+#
+# wrapper for irspy.pl
+#
+# run irspy with a smaller set of records in a loop to avoid out-of-memory
+#
+
+home=/usr/local/src/git
+cd $home/irspy/bin || exit 2
+logdir=../tmp
+
+for i in 0 1 2 3 4 5 6
+do
+   logfile=$logdir/irspy-mod-$i.log.`date '%w'`
+   YAZ_LOG=irspy,irspy_test nice -10 time perl -I../lib irspy.pl -n 50 -d -M 3500 -a -t Main -m 7,$i localhost:8018/IR-Explain---1 > $logfile 2>&1
+   gzip -f $logfile
+done
+
diff --git a/bin/irspy.sh b/bin/irspy.sh
deleted file mode 100755 (executable)
index fea2758..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-#
-# wrapper for irspy.pl
-#
-# run irspy with a smaller set of records in a loop to avoid out-of-memory
-#
-
-home=/usr/local/src/git
-cd $home/irspy/bin || exit 2
-logdir=../tmp
-
-for i in 0 1 2 3 4 5 6
-do
-   logfile=$logdir/irspy-mod-$i.log.`date '%w'`
-   YAZ_LOG=irspy,irspy_test nice -10 time perl -I../lib irspy.pl -n 50 -d -M 3500 -a -t Main -m 7,$i localhost:8018/IR-Explain---1 > $logfile 2>&1
-   gzip -f $logfile
-done
-