i need to print the same sentence for 6 minutes ..
hopefully i think it can be done by a loop i tried below code but no success.
Code:#!/bin/sh SECONDS=0 while [[ SECONDS -lt 360 ]] ; do echo "Still Running" done
please help me to sort this out.
Thanks & Regards.
Inshaf

