# no output -- default state
echo ___
trap
# assign some traps
trap "a" EXIT INT USR1 USR2
# show them all
# clear one
trap 0 INT
# clear another
trap "-" USR1