fish-shell/share/functions/__fish_ps.fish
2020-04-19 05:51:25 +02:00

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