mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 05:37:36 +08:00
9fa70d3ace
path was added in 3.4, it's old enough that we can use it now.
9 lines
189 B
Fish
9 lines
189 B
Fish
function __fish_ps
|
|
switch (command -s ps | path resolve | path basename)
|
|
case busybox
|
|
command ps $argv
|
|
case '*'
|
|
command ps axc $argv
|
|
end
|
|
end
|