opnsense-src/bin/sh/tests/execution/subshell2.0
Warner Losh d0b2dbfa0e Remove $FreeBSD$: one-line sh pattern
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
2023-08-16 11:55:03 -06:00

9 lines
40 B
Text

f() {
x=2
}
(
x=1
f
[ "$x" = 2 ]
)