mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-29 16:51:15 -03:00
6 lines
236 B
Fish
6 lines
236 B
Fish
# localization: skip(private)
|
|
# Helper function for completions that need to enumerate Linux modules
|
|
function __fish_print_modules
|
|
find /lib/modules/(uname -r)/{kernel,misc} -type f 2>/dev/null | sed -e 's$/.*/\([^/.]*\).*$\1$'
|
|
end
|