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.
AI-Driven Systems · DevOps · Cloud · Seguridad
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.