xref: /minix3/minix/commands/lspci/lspci.sh (revision 433d6423c39e34ec4b79c950597bb2d236f886be)
1*433d6423SLionel Sambuc#!/bin/sh
2*433d6423SLionel Sambuc
3*433d6423SLionel Sambucif [ ! -f /proc/pci ]; then
4*433d6423SLionel Sambuc  echo "PCI list not found (is /proc mounted?)" >&2
5*433d6423SLionel Sambuc  exit 1
6*433d6423SLionel Sambucfi
7*433d6423SLionel Sambuc
8*433d6423SLionel Sambucexec cut -d' ' -f3- /proc/pci
9