# Binde die bashtrap-Funktion an das SIGINT (Strg+C)
trap bashtrap INT
 
function bashtrap {
	echo "Interrupt!"
}