#!/bin/bash

RUNNING=`find . -name "*.LOCK"|wc -l`
FINISHED=`find . -name "*.sca"|wc -l`
TOTAL=`find . -name "*.ini"|wc -l`

echo $FINISHED of $TOTAL runs finished \($RUNNING currently running\)
