From 6af768c3b75e0c790fbd6ce09f9f83105948323b Mon Sep 17 00:00:00 2001 From: Martin Langhoff Date: Wed, 03 Nov 2010 20:22:24 +0000 Subject: Tidy up of the merge and process updates scripts. --- (limited to 'woip') diff --git a/woip/sh/process-updates b/woip/sh/process-updates new file mode 100755 index 0000000..57258c5 --- /dev/null +++ b/woip/sh/process-updates @@ -0,0 +1,31 @@ +#!/bin/sh + +set -e + +if [ ! -n "$1" ]; then + echo "process " + exit 1 +else + file=`readlink -f $1` +fi + +# drop the trailing '.processed' +basename=${file%.processed} + +ifile="$basename.index.txt" +echo "Creating index..." +pushd woip/rb +ruby ./index.rb $file > $ifile + +sfile="$basename.locate.db" +echo "Creating locate index..." +cat $ifile | LC_ALL=C /usr/libexec/locate.mklocatedb > $sfile + +spfile="$basename.locate.prefixdb" +echo "Creating locate prefix index..." +../c/lsearcher -f $sfile -c $spfile -n + +bfile="$basename.blocks.db" +echo "Creating block index" +../c/bzipreader -f $ofile -l | awk '{print $2;}' | ../c/blocks $bfile + -- cgit v0.9.1