mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-12 21:59:23 +01:00
c803e5e9d8
consistent between developers. Jeremy should be adding the equivalent settings for emacs soon.
19 lines
466 B
Python
Executable File
19 lines
466 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import sys
|
|
import anydbm
|
|
|
|
if __name__ == '__main__':
|
|
if len(sys.argv) < 2:
|
|
print 'Usage: %s <dbfile> <dumpfile>' % sys.argv[0]
|
|
sys.exit(-1)
|
|
db = anydbm.open(sys.argv[1], 'r')
|
|
fd = open(sys.argv[2], 'w')
|
|
key = db.firstkey()
|
|
while key != None:
|
|
fd.write('%s => %s\n' % (key, db[key]))
|
|
key = db.nextkey(key)
|
|
db.close()
|
|
fd.close()
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|