source: trunk/gli/Gatherer@ 4571

Last change on this file since 4571 was 4566, checked in by jmt12, 21 years ago

Changed Gatherer.jar to GLI.jar

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 661 bytes
Line 
1#!/bin/sh
2echo "Running The Gatherer..."
3
4if [ "x$GSDLHOME" = "x" ] ; then
5 echo "Setting GSDLHOME..."
6 pushd "**GSDLHOME**"
7 source setup.bash
8 popd
9fi
10
11# -Xms32M To set minimum memory
12# -Xmx32M To set maximum memory
13# -verbose:gc To set garbage collection messages
14# -Xincgc For incremental garbage collection
15# -Xprof Function call profiling
16# -Xloggc:<file> Write garbage collection log
17
18java -cp classes/:GLI.jar:lib/apache.jar:lib/calpa.jar:lib/jp.jar:lib/polloxml.jar:lib/qfslib.jar:lib/skinlf.jar:lib/nanoxml.jar org.greenstone.gatherer.Gatherer -gsdl $GSDLHOME -library **LIBRARYPATH** $*
19
20echo "Done!"
21
Note: See TracBrowser for help on using the repository browser.