#!/bin/ksh
# File: endless

x=0
while :
do
  echo "Keep Looping"
  if [ 5 -eq $x ] ; then break; fi
  sleep 1
  x=`expr $x + 1`
done
