#!/bin/sh
# Fake some work, $1 is the task number
# Change this to whatever you want to have done.

#
#sleep between 0 and 100 secs
let sleeptime=10*$RANDOM/32768
echo "task $1 is sleeping for $sleeptime seconds"
sleep $sleeptime
echo "task $1 has slept for $sleeptime seconds."


