blob: 7c28e4324bd182cee020e59d472df802a558a62f [file] [log] [blame]
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00001echo 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