diff options
Diffstat (limited to 'Doc/ref/makeMIFs.py')
-rw-r--r-- | Doc/ref/makeMIFs.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Doc/ref/makeMIFs.py b/Doc/ref/makeMIFs.py new file mode 100644 index 0000000..fcaa71b --- /dev/null +++ b/Doc/ref/makeMIFs.py @@ -0,0 +1,17 @@ +#! /bin/env python + +"""Script to write MIF files from ref.book and ref*.doc.""" + +import os +import glob + +def main(): + pipe = os.popen("fmbatch", 'w') + for i in ['ref.book'] + glob.glob('ref*.doc'): + cmd = "Open %s\nSaveAs m %s %s.MIF\n" % (i, i, os.path.splitext(i)[0]) + print cmd + pipe.write(cmd) + pipe.write("Quit\n") + +if __name__ == '__main__': + main() |