view ols/split.py @ 21:8dc7c0651c06

Link checker for Documentation, shows 404 errors and files not linked to.
author Rob Landley <rob@landley.net>
date Thu, 09 Aug 2007 22:16:32 -0500
parents 624421f445f0
children
line wrap: on
line source

#!/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)