Poodletooth-iLand/dev/tools/findterm/findtermAI.py

20 lines
399 B
Python
Raw Normal View History

2015-06-05 18:30:05 -05:00
import glob
def processFile(f,t):
data = open(f,'rb').read()
lines = data.replace('\r\n','\n').split('\n')
lines_found = []
for i,x in enumerate(lines):
if t in x:
lines_found.append(i+1)
return lines_found
term = raw_input('> ')
for x in glob.glob('../../../toontown/*/*AI.py'):
r = processFile(x,term)
if r:
print x,r
raw_input('*****')