miércoles, febrero 16, 2011

Búsqueda de texto dentro de ficheros

Directo al grano:

Podemos usar sed, awk, perl, etc. etc.

Pero también:

find /directorio -type f -print -exec grep string-a-buscar{}\;

Y más sencillo aún:

grep -R 'string-a-buscar' /directorio

Saludos.

No hay comentarios: