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.
SysAdmin, Dev-Ops, VMware and Cloud
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.