mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 17:07:44 +00: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
|