mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-03 20:54:00 +01:00
30 lines
493 B
Python
Executable File
30 lines
493 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import sys
|
|
|
|
with open(sys.argv[1],'r') as f:
|
|
raw_data = f.read()
|
|
|
|
output = []
|
|
inside = False
|
|
level = 0
|
|
for i in raw_data:
|
|
new_i = i
|
|
if i == "@":
|
|
inside = True
|
|
elif i == "{" and inside and level == 0:
|
|
new_i = ""
|
|
elif i == "}" and inside and level == 1:
|
|
inside = False
|
|
new_i = ""
|
|
if i == "{":
|
|
level += 1
|
|
elif i == "}":
|
|
level -= 1
|
|
output.append(new_i)
|
|
|
|
print "".join(output).replace("@test","echo").replace("|| skip","|| return")
|
|
|
|
|
|
|