|
|
| |
FISH_STATUS_TO_SIGNAL(1) |
fish-shell |
FISH_STATUS_TO_SIGNAL(1) |
fish_status_to_signal - Convert exit codes to human-friendly signals
function fish_prompt
echo -n (fish_status_to_signal $pipestatus | string join '|') (prompt_pwd) '$ '
end
fish_status_to_signal converts exit codes to their corresponding
human-friendly signals if one exists. This is likely to be useful for prompts
in conjunction with the $status and $pipestatus variables.
>_ sleep 5
^C⏎
>_ fish_status_to_signal $status
SIGINT
2021, fish-shell developers
Visit the GSP FreeBSD Man Page Interface. Output converted with ManDoc. |