mirror of
https://github.com/rust-mobile/android-activity.git
synced 2026-07-04 05:47:26 +00:00
9 lines
180 B
Python
9 lines
180 B
Python
#!/usr/bin/python3
|
|
import sys
|
|
import re
|
|
|
|
for line in sys.stdin:
|
|
search = re.search('#[0-9]+ +pc +([0-9A-Fa-f]+) +', line)
|
|
if search != None:
|
|
print(search.group(1))
|