#! /bin/bash trap func SIGINT SIGTERM function func { echo "haha try again young padawan" echo $1 } while : ; do sleep 1 done