mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 08:21:05 -05:00
10 lines
229 B
Text
10 lines
229 B
Text
|
|
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" ]
|