#! /bin/bash

trap 'echo SIGINT' sigint
trap 'echo SIGQUIT' sigquit
trap 'echo SIGUSR1' sigusr1

# don't use "sleep" because this would run in its own process
while true; do true; done


