Files @ c0977217a7da
Branch filter:

Location: light9/flax/add_sub

drewp@bigasterisk.com
attempt to receive a brand new submaster. doesn't work, this fix doesn't address the problem. But you can drag it in twice as a workaround
Ignore-this: feed1c3e69d0a50412fb6139e8c04ab0
#!/usr/bin/env python
# usage: add_sub [-l sublevel] subname subterms_to_add_to

from optparse import OptionParser

parser = OptionParser()
parser.add_option('-l', '--level', default='0')
opts, args = parser.parse_args()
print 'debug', opts, args

sub = args.pop(0)
print "adding '%s' at %s" % (sub, opts.level)

for subterm in args:
    print "subterm", subterm
    print
    filename = 'subterms/%s' % subterm
    subs = [line.split(None, 1)[0] for line in file(filename).readlines()]
    if sub not in subs:
        f = file(filename, 'a')
        print 'appended!'
        print >>f, "%s %s" % (sub, opts.level)