Combine repeated PDF into a single PDF

I needed to print today some copies of a PDF via CUPS (Common UNIX Printing System). The problem is that if I use the command line option -# (print a number of copies), the printer tends to print first all copies of the first page, then all copies of the second page and so forth. To avoid having to sort the papers after printing, I am combining them first into a single PDF using LaTeX:

\documentclass[10pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[left=0cm,right=0cm,top=0cm,bottom=0cm]{geometry}
\usepackage{pdfpages}
\usepackage{forloop}
\begin{document}
\newcounter{themenumber}
\forloop{themenumber}{0}{\value{themenumber} < 60}{
	\centering
	\includepdf{myDocument.pdf}
}
\end{document}

Note: \forloop{themenumber}{0}{\value{themenumber} < 60}{ might be not properly rendered above. Click on view source to get the right it right.

That command has the disadvantage, that much more data gets send to the printer, but at least it works.

Rotate a single page with pdfLaTeX

I am going to make a massively wide table. Of course there is no problem setting it with the rotation package. However, since people and foremost my supervisors are reading most material on the screen, it is very uncomfortable for them to read such a rotated figure. To make everyones life easier, I was looking for a way to rotate the pdf page to landscape, so that it appears correct on the screen. The solution is given at http://texblog.org/2007/11/10/landscape-in-latex/:  Use the pdflscape and wrap your figure in

\begin{landscape}

\end{landscape}