#!/bin/bash
#!/bin/sh
let a=1
while true
do
	sleep 1
	if [ $a -gt 5 ]
	then
		exit 2
	fi
	echo $a
	let a=$a+1
done
