mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-01 07:38:46 +00:00
9 lines
196 B
Fish
9 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
|