1# $FreeBSD: head/bin/sh/tests/execution/shellproc6.0 361647 2020-05-30 16:00:49Z jilles $
2
3T=`mktemp -d "${TMPDIR:-/tmp}/sh-test.XXXXXXXX"` || exit
4trap 'rm -rf "${T}"' 0
5printf 'printf "this "\necho is a test\nexit\n\0' >"$T/testshellproc"
6chmod 755 "$T/testshellproc"
7PATH=$T:$PATH
8[ "`testshellproc`" = "this is a test" ]
9