mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-12-13 09:24:03 +08:00
5 lines
206 B
Fish
5 lines
206 B
Fish
|
# Helper function for completions that need to enumerate Linux modules
|
||
|
function __fish_print_modules
|
||
|
find /lib/modules/(uname -r)/{kernel,misc} -type f ^ /dev/null | sed -e 's$/.*/\([^/.]*\).*$\1$'
|
||
|
end
|