Von mehreren .pdf-Dateien Zeilen mit einem bestimmten Suchwort ausgeben

Detlef Lechner Detlef.Lechner at gmx.net
Mon Sep 17 10:59:09 BST 2007


Am Montag, den 17.09.2007, 09:39 +0200 schrieb Matthias Böttcher:

> find directory -type f -exec grep -a 'suchstring' '{}' \;
> 
> man grep:
> 
> -a, --text
>  Process  a binary file as if it were text; this is equivalent to the
> --binary-files=text option

find /home/detlef/Computerhardware/IA-32/ -type f -exec grep -a 'BIOS'
'{}' \; 2>/dev/null
erzeugt einen ziemlichen Salat: http://ubuntuusers.de/paste/15061/
Ich kann den String 'BIOS' in der Ausgabe nicht finden.
Was habe ich falsch gemacht?

Gruß
Detlef