mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-24 09:46:47 +08:00
5 lines
127 B
Fish
5 lines
127 B
Fish
|
function __fish_print_arch_daemons --description 'Print arch daemons'
|
||
|
find /etc/rc.d/ -executable -type f -printf '%f\n'
|
||
|
|
||
|
end
|