mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
13 lines
190 B
Text
13 lines
190 B
Text
|
|
# $FreeBSD$
|
||
|
|
|
||
|
|
T=`mktemp -d "${TMPDIR:-/tmp}/sh-test.XXXXXXXX"` || exit
|
||
|
|
trap 'rm -rf "${T}"' 0
|
||
|
|
PATH=$T:$PATH
|
||
|
|
ls -ld . >/dev/null
|
||
|
|
cat <<EOF >"$T/ls"
|
||
|
|
:
|
||
|
|
EOF
|
||
|
|
chmod 755 "$T/ls"
|
||
|
|
PATH=$PATH
|
||
|
|
ls -ld .
|