#!/bin/bash for i in `seq 5`; do echo "hello $i" >&2 sleep 1 done