in reply to Easy matrix builder

paste *.txt > matrix.txt

(See paste in the Perl Power Tools project for an OS-neutral implementation.)

We're building the house of the future together.

Replies are listed 'Best First'.
Re^2: Easy matrix builder
by MidLifeXis (Monsignor) on Jan 18, 2006 at 18:06 UTC

    This is also available under *nix (which is where the idea for many of the ppt programs came from IIRC). However, watch for the number of open files. 200 may be approaching the per user, or per process limit on some machines / OS.

    If paste does what I think it does, it will open all of the files and then pull a line from each in a loop.

    --MidLifeXis

      Indeed he most probably meant the *NIX tool and pointed to ppt for a perl implementation to look at for inspiration.