mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-03 03:41:14 -03:00
10 lines
219 B
Fish
10 lines
219 B
Fish
# localization: skip(private)
|
|
function __fish_ps
|
|
switch (command -s ps | path resolve | path basename)
|
|
case busybox
|
|
command ps $argv
|
|
case '*'
|
|
command ps axc $argv
|
|
end
|
|
end
|