mirror of
https://github.com/farisawan-2000/kirby64.git
synced 2024-11-23 13:20:03 +00:00
16 lines
275 B
Python
16 lines
275 B
Python
import sys, os
|
|
|
|
f = open("undefined_syms.txt", 'r')
|
|
fl = f.readlines()
|
|
f.close()
|
|
|
|
with open(sys.argv[1]) as f:
|
|
for line in f:
|
|
if len(line.split()) > 0:
|
|
sym = line.split()[1][:-1]
|
|
# for usym in fl:
|
|
# if sym in usym:
|
|
|
|
print(sym)
|
|
|
|
# print(fl) |