mirror of
https://github.com/opnsense/src.git
synced 2026-04-24 23:57:30 -04:00
10 lines
132 B
Text
10 lines
132 B
Text
|
|
# $FreeBSD$
|
||
|
|
|
||
|
|
r=`cd /bin && PATH=. command -V ls`
|
||
|
|
case $r in
|
||
|
|
*/bin/ls*|*/bin/./ls*) ;;
|
||
|
|
*)
|
||
|
|
echo "Unexpected result: $r"
|
||
|
|
exit 1
|
||
|
|
esac
|