#!/bin/bash
settrap(){
	trap "echo 'Get your hands off Control C'" INT
}
settrap
let a=1
while true
do
	echo $a
	sleep 2
	echo $a
	let a=$a+1
done
