test_timeout.sh 157 B

123456789101112
  1. #!/bin/sh
  2. echo "Running timeout test script..."
  3. for i in `seq 5`; do
  4. sleep .5
  5. echo "running..."
  6. done
  7. echo "This line should not be executed!"
  8. exit 0