mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 15:37:24 +00:00
4 lines
179 B
Fish
4 lines
179 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|cut -d' ' -f1
|
|
end
|