En python, esto haría el trabajo:
#!/usr/bin/env python3
s = """How to get This line that this word repeated 3 times in THIS line?
But not this line which is THIS word repeated 2 times.
And I will get This line with this here and This one
A test line with four this and This another THIS and last this"""
for line in s.splitlines():
if line.lower().count("this") == 3:
print(line)
salidas:
How to get This line that this word repeated 3 times in THIS line?
And I will get This line with this here and This one
O para leer desde un archivo, con el archivo como argumento:
#!/usr/bin/env python3
import sys
file = sys.argv[1]
with open(file) as src:
lines = [line.strip() for line in src.readlines()]
for line in lines:
if line.lower().count("this") == 3:
print(line)
Pegue el script en un archivo vacío, guárdelo como find_3.py
, ejecútelo con el comando:
python3 /path/to/find_3.py <file_withlines>
Por supuesto, la palabra "this" se puede reemplazar por cualquier otra palabra (u otra cadena o sección de línea), y el número de ocurrencias por línea se puede establecer en cualquier otro valor en la línea:
if line.lower().count("this") == 3:
Editar
Si el archivo fuera grande (cientos de miles / millones de líneas), el siguiente código sería más rápido; lee el archivo por línea en lugar de cargar el archivo a la vez:
#!/usr/bin/env python3
import sys
file = sys.argv[1]
with open(file) as src:
for line in src:
if line.lower().count("this") == 3:
print(line.strip())