1#!/bin/sh 2 3if [ ! -f /proc/pci ]; then 4 echo "PCI list not found (is /proc mounted?)" >&2 5 exit 1 6fi 7 8exec cut -d' ' -f3- /proc/pci 9