Sign in
coral
/
busybox
/
refs/tags/1_27_0
/
.
/
shell
/
ash_test
/
ash-misc
/
nommu2.tests
blob: 61ed5ce5b7a7ccc994011c4a6debdb04201834f0 [
file
] [
log
] [
blame
]
echo
Not
shown
|
if
true
;
then
echo $
(
echo
Ok
);
fi
echo
Not
shown
|
if
true
;
then
echo
`echo Ok`
;
fi
echo
Not
shown
|
(
if
true
;
then
echo $
(
echo
Ok
);
fi
)
echo
Not
shown
|
(
if
true
;
then
echo
`echo Ok`
;
fi
)
echo
Done