mirror of
https://github.com/opnsense/src.git
synced 2026-02-16 00:58:21 -05:00
This affects scripts named on the command line, named with a '.' special builtin and found via the PATH %func autoloading mechanism. PR: 231986
5 lines
112 B
Text
5 lines
112 B
Text
# $FreeBSD$
|
|
|
|
{ stderr=$(${SH} /var/empty/nosuchscript 2>&1 >&3); } 3>&1
|
|
r=$?
|
|
[ -n "$stderr" ] && [ "$r" = 127 ]
|