Files
RedBear-OS/recipes/shells/zsh/source/Completion/Linux/Command/_lsusb
T
vasilito ff4ff35918 feat: track all source trees in git — full fork offline-first model
Red Bear OS is a full fork. All sources must be available from git clone
with zero network access. Removed gitignore rules that excluded fetched
source trees under recipes/*/source/, local/recipes/kde/*/source/,
local/recipes/qt/*/source/, and vendor source trees.

Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded.

127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt
frameworks, mesa, wayland, DRM drivers, and every other recipe source.
2026-05-14 10:55:53 +01:00

36 lines
1.2 KiB
Plaintext

#compdef lsusb
local usbidsline vendorid pair ret=1
local curcontext="$curcontext" state line expl
typeset -A opt_args
_arguments -C \
'(-v --verbose -t --tree)'{-v,--verbose}'[be verbose]' \
'-s+[filter devices by bus and/or device number]:bus and/or devnum to show' \
'-d+[filter devices by vendor/product ID]:vendor and product to show:->vendorproduct' \
'-D+[display only specified device]:device:_files -g "*(-%)" -P / -W /' \
'(-t --tree -v --verbose)'{-t,--tree}'[dump the physical USB device hierarchy as a tree]' \
'(-)'{-V,--version}'[print version information]' \
'(-)'{-h,--help}'[print help information]' && ret=0
if [[ -n $state && ${+_lsusb_vendors} -eq 0 ]]; then
typeset -A _lsusb_vendors _lsusb_devices
cat /usr/share/(misc|hwdata)/usb.ids | while IFS="" read usbidsline
do
case "$usbidsline" in
((#b)([0-9a-f]##) ##(*))
vendorid="$match[1]"
_lsusb_vendors[$vendorid]="$match[2]"
;;
( (#b)([0-9a-f]##) ##(*)))
pair="$vendorid:$match[1]"
_lsusb_devices[${pair}]="$match[2]"
;;
esac
done
fi
_wanted products expl 'vendor ID:product ID' compadd -k _lsusb_devices && ret=0
return ret