mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-27 06:31:19 -03:00
16 lines
423 B
Fish
16 lines
423 B
Fish
# localization: skip(private)
|
|
function __fish_print_opkg_packages
|
|
type -q -f opkg || return 1
|
|
|
|
argparse i/installed -- $argv
|
|
or return 1
|
|
|
|
if set -q _flag_installed
|
|
opkg list-installed 2>/dev/null | sed -r 's/^([a-zA-Z0-9\-]+) - ([a-zA-Z0-9\-]+)/\1\t\2/g'
|
|
return 0
|
|
else
|
|
opkg list 2>/dev/null | sed -r 's/^([a-zA-Z0-9\-]+) - ([a-zA-Z0-9\-]+)/\1\t\2/g'
|
|
return 0
|
|
end
|
|
end
|