DEBSOURCES
Skip Quicknav
sources / kcov / 43%2Bdfsg-1 / tests / bash / trap.sh
1234567891011121314
#!/bin/sh on_trap() { echo "On trap" exit 1 } trap on_trap SIGTERM while true do read x done