15 lines
135 B
Text
15 lines
135 B
Text
test_expect_success 'nested-subshell' '
|
|
(
|
|
cd foo &&
|
|
(
|
|
echo a &&
|
|
echo b
|
|
) >file &&
|
|
|
|
cd foo &&
|
|
(
|
|
echo a
|
|
echo b
|
|
) >file
|
|
)
|
|
'
|