mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 03:04:00 +00:00
23 lines
217 B
Python
Executable File
23 lines
217 B
Python
Executable File
#!/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()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|