xref: /dflybsd-src/tools/regression/bin/sh/execution/shellproc1.0 (revision 2b3f93ea6d1f70880f3e87f3c2cbe0dc0bfc9332)
1# $FreeBSD: head/bin/sh/tests/execution/shellproc1.0 218205 2011-02-02 22:03:18Z jilles $
2
3T=`mktemp -d "${TMPDIR:-/tmp}/sh-test.XXXXXXXX"` || exit
4trap 'rm -rf "${T}"' 0
5cat <<EOF >"$T/testshellproc"
6printf 'this '
7echo is a test
8EOF
9chmod 755 "$T/testshellproc"
10PATH=$T:$PATH
11[ "`testshellproc`" = "this is a test" ]
12