2
0
Fork 0
mirror of https://github.com/fish-shell/fish-shell synced 2025-03-05 15:57:36 +00:00
fish-shell/share/functions/__fish_crux_packages.fish

5 lines
180 B
Fish
Raw Normal View History

# 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