summaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-misc/redir3.tests (plain)
blob: 7c28e4324bd182cee020e59d472df802a558a62f
1echo Error >/does/not/exist; echo One:$?
2t=BAD
3t=Ok >>/cant/be/created; echo One:$?
4echo $t
5! >/cant/be/created; echo Zero:$?
6exec >/cant/be/created; echo One:$?
7exec /bin/true >/cant/be/created; echo One:$?
8! exec /bin/true >/cant/be/created; echo Zero:$?
9echo Done
10