blob: c35b6b3916dfdf3fdd15711537675991e3753c66 [file] [log] [blame]
Denys Vlasenko4ccddc82020-02-14 17:27:18 +01001# "exit" in trap should not use last command's exitcode,
2# but exitcode on entering the trap.
3(trap "echo Trapped; exit" EXIT
4 (exit 1)
5)
6echo One:$?