mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-29 14:23:09 +00:00
9c6e81a838
Fixes #6918
8 lines
196 B
Fish
8 lines
196 B
Fish
function __fish_ps
|
|
switch (realpath (command -v ps) | string match -r '[^/]+$')
|
|
case busybox
|
|
command ps $argv
|
|
case '*'
|
|
command ps axc $argv
|
|
end
|
|
end
|