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