mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-21 17:01:13 -03:00
34 lines
762 B
Fish
34 lines
762 B
Fish
# localization: skip(private)
|
|
function __fish_print_packages
|
|
# This is `__fish_print_packages`. It prints packages,
|
|
# from the first package manager it finds.
|
|
# That's a pretty bad idea, which is why this is broken up,
|
|
# and only available for legacy reasons.
|
|
__fish_print_apt_packages $argv
|
|
and return
|
|
|
|
__fish_print_pkg_packages $argv
|
|
and return
|
|
|
|
__fish_print_pkg_add_packages $argv
|
|
and return
|
|
|
|
__fish_print_pacman_packages $argv
|
|
and return
|
|
|
|
__fish_print_rpm_packages $argv
|
|
and return
|
|
|
|
__fish_print_eopkg_packages $argv
|
|
and return
|
|
|
|
__fish_print_portage_packages $argv
|
|
and return
|
|
|
|
__fish_print_port_packages $argv
|
|
and return
|
|
|
|
__fish_print_xbps_packages $argv
|
|
and return
|
|
end
|