mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 18:32:49 +00:00
10 lines
212 B
Bash
Executable file
10 lines
212 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# a little helper script to fetch PCI and USB IDs databases
|
|
|
|
rm -vf pci.ids usb.ids
|
|
|
|
wget https://raw.githubusercontent.com/pciutils/pciids/master/pci.ids
|
|
wget http://www.linux-usb.org/usb.ids
|