Printing: Different pages from different feeds (pdf)

2

1

I've got a pdf document and want to print it about 100 times with a Kyocera fs 4020dn printer. I'd like to have the first page on colored paper.

Is it possible to tell the printer to take the first page from manual feed and the remaining pages from the regular cassette?

I know there are possibilities to do this in Word or OO but I don't know how to solve this for pdf files.

I'm using Linux (Kbuntu).

Simson

Posted 2012-09-13T20:21:45.220

Reputation: 141

if it were Windows: https://www.youtube.com/watch?v=6iXuU4b5mh4 :-)

– juFo – 2016-06-29T08:07:30.813

If you stick just one page into the manual feed, then print, won't it take that first sheet and pull the rest from whats available (the bin)? – James K – 2012-09-13T21:43:29.413

1You're right but I want to print the document about 100 times. Sorry, my question was unclear in this point... – Simson – 2012-09-14T10:37:15.780

Answers

2

I solved my problem with a shell script:

#!/bin/sh
i=1
while [ $i -le <number of printouts> ]
do
  lp -o media=<name of feed> <file> -P 1
  lp <file> -P 2-<number of pages>
  i=`expr $i + 1`
done

Simson

Posted 2012-09-13T20:21:45.220

Reputation: 141