xref: /freebsd/bin/sh/tests/execution/killed1.0 (revision c6eb7f3fbffd9065ab75a2ed266f1b069fd97e6e)
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