mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 16:23:25 -05:00
11 lines
241 B
Text
11 lines
241 B
Text
# $FreeBSD$
|
|
|
|
T=`mktemp -d "${TMPDIR:-/tmp}/sh-test.XXXXXXXX"` || exit
|
|
trap 'rm -rf "${T}"' 0
|
|
cat <<EOF >"$T/testshellproc"
|
|
printf 'this '
|
|
echo is a test
|
|
EOF
|
|
chmod 755 "$T/testshellproc"
|
|
PATH=$T:$PATH
|
|
[ "`testshellproc`" = "this is a test" ]
|