#!/bin/bash
# Run the summary utility, and copy results to 'abalone' web server
# directory. This script takes no arguments, so is compatible
# with 'cron'

. /etc/profile
. $HOME/.bash_profile
. $HOME/gomse
export PATH=$PATH:/usr/local/bin
cd $SIAM_HOME/logs
# Run summary on portal log named 'portal.out' (which may be a symbolic link)
$SIAM_HOME/shoreUtils/summarize portal.out > summary.html
echo `date` > junk
scp summary.html *.gif junk abalone:/var/www/html/siam2/mseSummaries/.


