diff options
author | Jonathan Clark <jon.h.clark@gmail.com> | 2012-05-23 13:48:04 -0400 |
---|---|---|
committer | Jonathan Clark <jon.h.clark@gmail.com> | 2012-05-23 13:48:04 -0400 |
commit | b0173db2bae5dc1afef5f6804043d422adaa9118 (patch) | |
tree | d4ffea832919b3206634943e458152575d4df137 | |
parent | 7a1e274fc4147631d4a70af47406301dcaaff497 (diff) |
Script for dividing a single file full of references into the 1-reference-per-file format expected by cdec
-rwxr-xr-x | dpmert/divide_refs.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/dpmert/divide_refs.py b/dpmert/divide_refs.py new file mode 100755 index 00000000..b478f918 --- /dev/null +++ b/dpmert/divide_refs.py @@ -0,0 +1,15 @@ +#!/usr/bin/env python +import sys + +(numRefs, outPrefix) = sys.argv[1:] +numRefs = int(numRefs) + +outs = [open(outPrefix+str(i), "w") for i in range(numRefs)] + +i = 0 +for line in sys.stdin: + outs[i].write(line) + i = (i + 1) % numRefs + +for out in outs: + out.close() |