katie/scripts/getenv.py
Ivailo Monev 3d930c875a make getenv script Python 3 compatible
Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
2016-11-07 16:37:55 +00:00

21 lines
632 B
Python
Executable file

#!/usr/bin/python
import os, re
cwd = os.path.dirname(__file__)
regex = re.compile('getenv\("([^\)]+)')
lmatches = []
for root, subdirs, files in os.walk('%s/../src' % cwd):
for sfile in files:
if sfile.endswith(('.cpp', '.h')):
sfull = '%s/%s' % (root, sfile)
with open(sfull, 'rb') as f:
scontent = f.read()
scontent = scontent.decode('utf-8')
for smatch in regex.findall(scontent):
smatch = smatch.strip('"\'')
if not smatch in lmatches:
lmatches.append(smatch)
print('\n'.join(sorted(lmatches)))