mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 05:12:50 +08:00
5 lines
184 B
Fish
5 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
|