mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-08 05:35:16 +08:00
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
|