#!/bin/bash
#
#  example_shell_process.sh  [RunType] [RunNumber] [RunState]
#    - simple shell script to call from a CODA transition
#
#


# Redirect all output to logfile
LOG_FILE=/tmp/example_log_file.txt
exec >> $LOG_FILE 2>&1

RunType=$1
RunNumber=$2
RunState=$3

echo "************************************************************"
date
echo "$0: "
echo "   RunType = $RunType"
echo "   RunNumber = $RunNumber"
echo "   RunState = $RunState"
echo "************************************************************"
