% pr -l1 -t -3 file1
Line 1 here Line 2 here Line 3 here
Line 4 here Line 5 here Line 6 here
Line 7 here Line 8 here Line 9 here
... ... ...
Use the -l1 (page length 1 line) and
-t (no title) options. Each
"page" will be filled by three
lines (or however many columns you set). You have to use
-t; otherwise, pr will silently
ignore any page lengths that don't leave room for
the header and footer. That's just what you want if
you want data in columns with no headings.
If you want headings too, pipe the output of pr
through another pr:
% pr -l1 -t -3 file1 | pr -h file1
Nov 1 19:48 1992 file1 Page 1
Line 1 here Line 2 here Line 3 here
Line 4 here Line 5 here Line 6 here
Line 7 here Line 8 here Line 9 here
... ... ...
The -h file1 puts the filename into the heading.