logviewer.sh 236 Bytes
Newer Older
Juon Kawakami's avatar
init  
Juon Kawakami committed
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

if [ ! $# -eq 1 ] ; then
  echo "usage: `basename $0` <rescue.log path>"
  exit 1
fi

. functions.sh

makeClasspath $BASEDIR/jars $BASEDIR/lib
java -Xmx256m -cp $CP sample.SampleLogViewer -c $BASEDIR/config/logviewer.cfg $1