mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
ce245704d7
These were excluded from style.fish
12 lines
377 B
Fish
12 lines
377 B
Fish
function __fish_list_loaded_klds
|
|
set -l klds (kldstat | string match -r '\b\S+.ko$')
|
|
for kld in $klds
|
|
if set -l description (__fish_whatis (string replace '.ko' '' -- $kld) "kernel module")
|
|
printf '%s\t%s\n' $kld $description
|
|
else
|
|
printf '%s\n' $kld
|
|
end
|
|
end
|
|
end
|
|
|
|
complete -c kldunload -xa '(__fish_list_loaded_klds)'
|