Files
android_external_bash/tests/exec9.sub
2011-11-22 19:11:26 -05:00

21 lines
252 B
Plaintext

# make sure commands before the last one in the pipeline can't change $?
false
false | echo $?
false
(false) | echo $?
false
true | echo $?
false
(true) | echo $?
true
false | echo $?
true
(false) | echo $?
true
true | echo $?
true
(true) | echo $?