How to print multiple copies of a document with lpr and keep the page order
1
vote
1
answer
573
views
lpr -# 2 1-2.pdf
mixes the document's page order.
The first page is printed two times, then page two is printed two times.
Whereas this hacky loop keeps the page order
for i in {1..2}
do lpr 1-2.pdf
done
Is this really by design?
---
Arch Linux LTS
Asked by jjk
(445 rep)
Dec 19, 2023, 07:28 AM
Last activity: Dec 19, 2023, 09:13 AM
Last activity: Dec 19, 2023, 09:13 AM