mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 11:14:00 +00:00
23 lines
217 B
Plaintext
23 lines
217 B
Plaintext
|
#!/usr/bin/env python
|
||
|
|
||
|
import os
|
||
|
|
||
|
def doit():
|
||
|
for f in os.listdir('.'):
|
||
|
if os.path.isdir(f):
|
||
|
os.chdir(f)
|
||
|
doit()
|
||
|
os.chdir("..")
|
||
|
else:
|
||
|
if f.endswith('.mma'):
|
||
|
os.system("mma %s" % f)
|
||
|
|
||
|
doit()
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|