=================
#!/bin/bash

# This script will sleep 
# 50 times for 1 second in
# the background


  main()
  {
    for ((i=0 ; i<=50 ;i++)) 
    do
      sleep 1
      let i++
    done
  }

  main &

# EOF
==================



-- 
Best regards,
Daniel
_______________________________________________
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"

Reply via email to