mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 07:23:34 +08:00
21 lines
762 B
Fish
21 lines
762 B
Fish
function __fish_status_to_signal --description "Print signal name from argument (\$status), or just argument"
|
|
for arg in $argv
|
|
if test $arg -gt 128
|
|
set -l signals SIGHUP SIGINT SIGQUIT SIGILL SIGTRAP SIGABRT SIGBUS \
|
|
SIGFPE SIGKILL SIGUSR1 SIGSEGV SIGUSR2 SIGPIPE SIGALRM \
|
|
SIGTERM SIGSTKFLT SIGCHLD SIGCONT SIGSTOP SIGTSTP \
|
|
SIGTTIN SIGTTOU SIGURG SIGXCPU SIGXFSZ SIGVTALRM \
|
|
SIGPROF SIGWINCH SIGIO SIGPWR SIGSYS
|
|
set -l sigix (math $arg - 128)
|
|
if test $sigix -le (count $signals)
|
|
echo $signals[$sigix]
|
|
else
|
|
echo $arg
|
|
end
|
|
else
|
|
echo $arg
|
|
end
|
|
end
|
|
return 0
|
|
end
|