mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
f5ccb2215a
Like all other scripts in the same dir. It has a hashbang, so it should be executable.
11 lines
295 B
Python
Executable file
11 lines
295 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import re
|
|
import sys
|
|
import subprocess
|
|
|
|
flex = sys.argv[1]
|
|
|
|
out = subprocess.check_output([flex, '--version'], universal_newlines=True,
|
|
stderr=subprocess.STDOUT, stdin=subprocess.DEVNULL)
|
|
print(re.search(r'(\d+\.\d+(\.\d+)?)', out).group())
|