mirror of
https://github.com/opnsense/src.git
synced 2026-02-16 17:19:56 -05:00
This is how ksh93 treats ! within a pipeline and makes the ! in
a | ! b | c
negate the exit status of the pipeline, as if it were
a | { ! b | c; }
Side effect: something like
f() ! a
is now a syntax error, because a function definition takes a command,
not a pipeline.
Exp-run done by: pav (with some other sh(1) changes)
3 lines
29 B
Text
3 lines
29 B
Text
# $FreeBSD$
|
|
|
|
: | ! : | false
|