remove lirc_pci_id.sh

This commit is contained in:
Alexander Grothe 2017-02-28 16:07:10 +01:00
parent be6e71e54d
commit a731768b7c

View File

@ -1,9 +0,0 @@
#!/bin/bash
# return all vendor:device ids
# typical device path:
# /sys/devices/pci0000\:00/0000\:00\:1f.2/
for device in /sys/devices/pci*/*:*:*/; do
echo "$(cat "$device"/vendor):$(cat "$device"/device)" | sed 's/0x//g'
done