mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-01 02:40:45 +08:00
6 lines
217 B
Fish
6 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
|