#!/bin/sh

# script to get the status of a simulation.  must be in the
# directory where the simulation was launched for this to work

kill -USR1 $1
sleep 1
cat /tmp/status.stcp
rm /tmp/status.stcp

