⇤ ← Revision 1 as of 2008-04-14 10:59:03
Size: 206
Comment:
|
Size: 403
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
#acl AdminGroup:read,write EditorGroup:read All:read | #acl AdminGroup:read,write |
Line 13: | Line 13: |
{{{#!python #!/usr/bin/env python import os,glob filelist=glob.glob('*.pdf') for f in filelist: psfilename=f.split('.')[0]+'.ps' cmd='pdftops '+f+' '+psfilename print cmd os.system(cmd) }}} |