xref: /freebsd/bin/sh/tests/execution/killed1.0 (revision 22cf89c938886d14f5796fc49f9f020c23ea8eaf)
1# Sometimes the "Killed" message is not flushed soon enough and it
2# is redirected along with the output of a builtin.
3# Do not change the semicolon to a newline as it would hide the bug.
4
5exec 3>&1
6exec >/dev/null 2>&1
7${SH} -c 'kill -9 $$'; : >&3 2>&3
8