Sign in
foss-eda-tools
/
third_party
/
shuttle
/
sky130
/
mpw-007
/
slot-030
/
268a65bf77514ce05b2b1415de0dd66b6df5a35e
/
.
/
venv
/
lib
/
python3.9
/
site-packages
/
pyverilog
/
ast_code_generator
/
touch.py
blob: 7c44cce6e3b2263cd0c0cdea843a15ce34cf4799 [
file
] [
log
] [
blame
]
import
os
import
sys
import
subprocess
text
=
open
(
'list_ast.txt'
,
'r'
).
read
()
lines
=
text
.
split
(
'\n'
)
for
line
in
lines
:
if
line
!=
''
:
subprocess
.
call
(
'touch template/'
+
line
.
lower
()
+
'.txt'
,
shell
=
True
)