mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 04:43:10 +00:00
5 lines
217 B
Fish
5 lines
217 B
Fish
function __fish_pipestatus_with_signal --description "Print arguments from \$pipestatus replacing values with signal names where appropriate"
|
|
for pstat in $argv
|
|
__fish_status_to_signal $pstat
|
|
end
|
|
end
|