Em python, isso faria o trabalho:
#!/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)
saídas:
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
Ou para ler de um arquivo, com o arquivo 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)
Cole o script em um arquivo vazio, salve-o como find_3.py
, execute-o pelo comando:
python3 /path/to/find_3.py <file_withlines>
É claro que a palavra "this" pode ser substituída por qualquer outra palavra (ou outra seção de string ou linha), e o número de ocorrências por linha pode ser definido como qualquer outro valor na linha:
if line.lower().count("this") == 3:
Editar
Se o arquivo fosse grande (centenas de milhares / milhões de linhas), o código abaixo seria mais rápido; ele lê o arquivo por linha em vez de carregá-lo de uma 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())