Subject: Re: text processing tool
To: None <netbsd-help@netbsd.org>
From: Chuck Yerkes <chuck+nbsd@2003.snew.com>
List: netbsd-help
Date: 03/12/2003 19:22:35
Ah, that saves me from my urge to find an APL
implementation for NetBSD.

Which means I don't have to write all over my keys with greek.

I very much don't miss APL. 
Postscript has satisfied my Forth cravings.

Quoting Charles Blundell (cb@kittenz.org):
> on Wed, Mar 12, 2003 at 04:13:29PM +0100, Lubos Vrbka wrote:
> > does in netbsd exist any utility that would convert column-formatted 
> > text file to row-formatted text file? (eqivalent to matrix 
> > transposition, i.e.:
> 
> rs(1) can do this:
> 
> $ cat test
> 1 2 3 4 5
> a a a a a
> b b b b b
> c c c c c
> d d d d d
> $ rs -TC' ' <test
> 1 a b c d
> 2 a b c d
> 3 a b c d
> 4 a b c d
> 5 a b c d