#!/bin/bash # A long-running command for Exercise 1 of Module 3. # The constructs used below are described in Module 4. i=0 while [ $i -lt 100000 ] do i=`expr $i + 1` done