VocalEasel/mma/egs/mkall
Matthias Neeracher d599bfbe4e Added MMA
2006-11-10 08:07:56 +00:00

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()