mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 23:24:39 +00:00
4 lines
184 B
Fish
4 lines
184 B
Fish
# a function to obtain a list of installed packages with CRUX pkgutils
|
|
function __fish_crux_packages -d 'Obtain a list of installed packages'
|
|
pkginfo -i | string split -f1 ' '
|
|
end
|