]> git.saurik.com Git - apple/shell_cmds.git/blob - sh/tests/execution/shellproc1.0
shell_cmds-216.60.1.tar.gz
[apple/shell_cmds.git] / sh / tests / execution / shellproc1.0
1 # $FreeBSD: head/bin/sh/tests/execution/shellproc1.0 218205 2011-02-02 22:03:18Z jilles $
2
3 T=`mktemp -d "${TMPDIR:-/tmp}/sh-test.XXXXXXXX"` || exit
4 trap 'rm -rf "${T}"' 0
5 cat <<EOF >"$T/testshellproc"
6 printf 'this '
7 echo is a test
8 EOF
9 chmod 755 "$T/testshellproc"
10 PATH=$T:$PATH
11 [ "`testshellproc`" = "this is a test" ]