]> git.saurik.com Git - apple/shell_cmds.git/blob - sh/tests/builtins/trap3.0
81607293531e1d795048561449a17b8ebc47b439
[apple/shell_cmds.git] / sh / tests / builtins / trap3.0
1 # $FreeBSD$
2
3 {
4 trap '' garbage && exit 3
5 trap - garbage && exit 3
6 trap true garbage && exit 3
7 trap '' 99999 && exit 3
8 trap - 99999 && exit 3
9 trap true 99999 && exit 3
10 } 2>/dev/null
11 exit 0