#!/bin/bash
second(){
	echo 'Control C, Once more to kill job'
#	trap "echo 'You are stuck, I will not let you kill this'" INT
	trap exit 1  INT
}
trap second INT
let a=1
while true
do
	sleep 1
	echo $a
	let a=$a+1
done
