Home | History | Annotate | Download | only in run-routeup
      1 #!/bin/sh
      2 # Wake up from stdin twice.
      3 c=0
      4 while [ $c -lt 120 ]; do
      5   echo
      6   sleep 0.2
      7   c=$((c+1))
      8 done
      9