Re: Problem when sort file

2004-05-13 Thread John Doe
John McKown wrote: On Sun, 9 May 2004, John Doe wrote: Hello all, i trying to sort one my file that is 10 MB and contain records: --- aa adsad dasd das aa --- i want to sort and eleminate double records. I use: $perl -0777ane '$, = "\n"; @[EMAIL PROTECTED] = (); print sort keys %uniq' \ out.log B

Re: Problem when sort file

2004-05-13 Thread John Doe
John W. Krahn wrote: John Doe wrote: Hello all, Hello, i trying to sort one my file that is 10 MB and contain records: --- aa adsad dasd das aa --- i want to sort and eleminate double records. I use: $perl -0777ane '$, = "\n"; @[EMAIL PROTECTED] = (); print sort keys %uniq' \ out.log But i rec

Re: Problem when sort file

2004-05-09 Thread John McKown
On Sun, 9 May 2004, John Doe wrote: > Hello all, > i trying to sort one my file that is 10 MB and contain > records: > --- > aa > adsad > dasd > das > aa > --- > i want to sort and eleminate double records. > I use: > $perl -0777ane '$, = "\n"; @[EMAIL PROTECTED] = (); print sort keys %uniq' \ out

Re: Problem when sort file

2004-05-09 Thread John W. Krahn
John Doe wrote: > > Hello all, Hello, > i trying to sort one my file that is 10 MB and contain > records: > --- > aa > adsad > dasd > das > aa > --- > i want to sort and eleminate double records. > I use: > $perl -0777ane '$, = "\n"; @[EMAIL PROTECTED] = (); print sort keys %uniq' \ out.log > >