mirror of
https://github.com/farisawan-2000/kirby64.git
synced 2024-11-23 13:20:03 +00:00
5 lines
109 B
Python
5 lines
109 B
Python
import sys
|
|
with open(sys.argv[1]) as f:
|
|
for line in f:
|
|
if "glabel" in line:
|
|
print(line.split()[-1]) |