gecko-dev/webtools/lxr/update-search.sh

50 строки
1.1 KiB
Bash
Исходник Обычный вид История

1998-06-12 23:41:29 +04:00
#!/bin/sh
# Run this from cron to update the glimpse database that lxr uses
# to do full-text searches.
# Created 12-Jun-98 by jwz.
# Updated 2-27-99 by endico. Added multiple tree support.
1998-06-12 23:41:29 +04:00
PATH=/opt/local/bin:/opt/cvs-tools/bin:/usr/ucb:$PATH
1998-06-12 23:41:29 +04:00
export PATH
TREE=$1
export TREE
1998-06-12 23:41:29 +04:00
lxr_dir=.
db_dir=`sed -n 's@^dbdir:[ ]*\(.*\)@\1@p' < $lxr_dir/lxr.conf`/$TREE
if [ "$TREE" = '' ]
then
#since no tree is defined, assume sourceroot is defined the old way
#grab sourceroot from config file indexing only a single tree where
#format is "sourceroot: dirname"
src_dir=`sed -n 's@^sourceroot:[ ]*\(.*\)@\1@p' < $lxr_dir/lxr.conf`
else
#grab sourceroot from config file indexing multiple trees where
#format is "sourceroot: treename dirname"
src_dir=`sed -n 's@^sourceroot:[ ]*\(.*\)@\1@p' < $lxr_dir/lxr.conf | grep $TREE | sed -n "s@^$TREE \(.*\)@\1@p"`
fi
1998-06-12 23:41:29 +04:00
log=$db_dir/glimpseindex.log
exec > $log 2>&1
set -x
1998-06-13 04:43:15 +04:00
date
1998-06-12 23:41:29 +04:00
cd $db_dir/tmp
# don't index CVS files
echo '/CVS/' > .glimpse_exclude
1998-06-12 23:41:29 +04:00
set -e
time glimpseindex -H . $src_dir
chmod -R a+r .
mv .glimpse* ../
1998-06-13 04:43:15 +04:00
date
uptime
1998-06-13 04:43:15 +04:00
1998-06-12 23:41:29 +04:00
exit 0