kirby64/tools/getLabels.py
farisawan-2000 29cdf48cdc ovl6 data
2020-07-05 20:06:15 -04:00

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])