mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-26 02:13:38 +08:00
13 lines
332 B
Fish
13 lines
332 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)'
|