[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: METODO DE ORDENMIENTO (AWK, SORT, O LO QUE SEA)



On Wed, 2003-02-19 at 14:00, Pablo Alverte wrote:
> 
> Justo, esta terminando de ajustar eso y llego tu respuesta.
> 
> Esta en todas :-)
> 
> Muchas gracias!

Con mucho gusto.

Si te interesa, aquí tienes una versión en Perl, que no depende de que
tu archivo no contenga tal o cual símbolo (separa registros en las
líneas en blanco):

#!/usr/bin/perl
while(<STDIN>) { $r .= $_; next unless /^\s*$/; push @a, $r; $r = ''; }
print sort @a;

 -CR




Reply to: