On 21/03/12 01:37, Bob Proulx wrote:
Ahem... 'lspci | grep -i eth' is good but 'lspci -v' is paragraph formatted and so finding that with grep is more trouble. You need a "paragraph grep" of which there are many different programs and techniques. Perl is always available these days so perhaps using perl is easiest.
for the shake of completesness lspci -v | grep -A5 -i eth or the even easier lspci -v | grep -5 -i eth greets! aL