mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-26 15:35:55 +00:00
8 lines
180 B
Python
8 lines
180 B
Python
#!/usr/bin/env python
|
|
|
|
""" Portable python script to read version from configure.acr """
|
|
|
|
with open('configure.acr', 'r') as f:
|
|
f.readline()
|
|
print(f.readline().split()[1])
|