android_mt6572_jiabo/external/busybox/shell/hush_test/hush-misc/redir3.tests
2025-09-05 16:56:03 +08:00

9 lines
267 B
Text
Executable file

echo Error >/does/not/exist; echo One:$?
t=BAD
t=Ok >>/cant/be/created; echo One:$?
echo $t
! >/cant/be/created; echo Zero:$?
exec >/cant/be/created; echo One:$?
exec /bin/true >/cant/be/created; echo One:$?
! exec /bin/true >/cant/be/created; echo Zero:$?
echo Done