VocalEasel/mma/egs/mkall

23 lines
217 B
Plaintext
Raw Permalink Normal View History

2006-11-10 08:07:56 +00:00
#!/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()