fish-shell/share/functions/__fish_ps.fish
Fabian Homborg c7c10c8b10 __fish_ps: Use builtin realpath
We might want to find a better home for that builtin.
2020-04-21 21:11:26 +02:00

8 lines
204 B
Fish

function __fish_ps
switch (builtin realpath (command -v ps) | string match -r '[^/]+$')
case busybox
command ps $argv
case '*'
command ps axc $argv
end
end