mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 00:47:30 +00:00
3dfaa192da
These were removed in f8b2e818ed
under a
belief that they were unused. But they are documented and supported.
17 lines
329 B
Text
17 lines
329 B
Text
ALRM received
|
|
command false:
|
|
PROCESS_EXIT 1
|
|
JOB_EXIT 0
|
|
command true:
|
|
PROCESS_EXIT 0
|
|
JOB_EXIT 0
|
|
command false | true:
|
|
PROCESS_EXIT 1
|
|
PROCESS_EXIT 0
|
|
JOB_EXIT 0
|
|
This is the process whose exit event shuld be blocked
|
|
This should come before the event handler
|
|
PROCESS_EXIT 0
|
|
JOB_EXIT 0
|
|
Now event handler should have run
|
|
PROCESS_EXIT 0
|