nt9856x/BSP/busybox/shell/hush_test/hush-redir/redir_errors.tests
2023-03-28 15:07:53 +08:00

10 lines
267 B
Plaintext
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