xref: /dflybsd-src/tools/regression/bin/sh/execution/shellproc6.0 (revision c907b81a9d9aa73a2c8f1b41387347bc0eb66ba5)
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