From: Wolfram Schneider Date: Wed, 14 Apr 2010 09:32:28 +0000 (+0000) Subject: wrapper for irspy.pl X-Git-Tag: CPAN-v1.02~54^2~93^2~8 X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=commitdiff_plain;h=572431173b8049efb72f74acef89b9ac7fe78c5e wrapper for irspy.pl --- diff --git a/bin/irspy.sh b/bin/irspy.sh new file mode 100755 index 0000000..fea2758 --- /dev/null +++ b/bin/irspy.sh @@ -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 +