runDemo.sh 228 B

12345678910111213141516
  1. #! /bin/sh
  2. ## run the oboo demo continuously
  3. sleep 15
  4. sh /usr/bin/demo.sh s
  5. sleep 5
  6. sh /usr/bin/demo.sh r
  7. sleep 5
  8. while [ 1 ]; do
  9. sh /usr/bin/demo.sh
  10. sleep 2
  11. sh /usr/bin/demo.sh r
  12. sleep 10
  13. done