Re: regrouping lines of STDIN -> hashtable algorithm?

2003-03-07 Thread Randal L. Schwartz
> "TSchutzerWeissmann" == TSchutzerWeissmann <[EMAIL PROTECTED]> writes: TSchutzerWeissmann> Hi Luis, TSchutzerWeissmann> ... >> Looks like a hashtable algorithm... just curious. =-] TSchutzerWeissmann> don't know what one of those is... TSchutzerWeissmann> ... >> # First time for this array

Re: regrouping lines of STDIN -> hashtable algorithm?

2003-03-07 Thread Roger Burton West
On Fri, Mar 07, 2003 at 01:56:50PM -, [EMAIL PROTECTED] wrote: >But I think I can do this on the command-line with sort, somehow, all I want >to do is sort on the 24th to 26th character of every line, instead of the >whole thing. sort +.23 -25 (character numbering starts at 0) Roger

RE: regrouping lines of STDIN -> hashtable algorithm?

2003-03-07 Thread TSchutzerWeissmann
Title: RE: regrouping lines of STDIN -> hashtable algorithm? Hi Luis, ... >   Looks like a hashtable algorithm... just curious. =-] don't know what one of those is... ... >   # First time for this array ref... >   $seen{$code} = [ $_ ]; yup, [ ] was what