diff ols/split.py @ 14:624421f445f0

Update the split script to what I'm actually using, and minor fix to the OLS top level index.
author Rob Landley <rob@landley.net>
date Thu, 02 Aug 2007 22:31:53 -0500
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ols/split.py	Thu Aug 02 22:31:53 2007 -0500
@@ -0,0 +1,13 @@
+#!/usr/bin/python
+
+import os, sys
+
+infile=sys.argv[1]
+credits=sys.argv[2]
+numbers=sys.argv[3:]
+for i in xrange(len(numbers)):
+  if i == len(numbers)-1: next = ""
+  else: next = int(numbers[i+1])-1
+  command="pdftk %s.pdf cat %s-%s 1-1 %s-%s output %s-pages-%s-%s.pdf" % (infile,numbers[i],next,credits,credits,infile,numbers[i],next)
+  print command
+  os.system(command)