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

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

Problem when sort file

2004-05-09 Thread John Doe
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 But i recive error: Out of memory! Yeah, this is normal,

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 But i recive

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.log But i

sort file

2002-02-13 Thread Susan Aurand
What is the fastest or best way to sort a file alphabetically, the rewrite it to a file. Thanks Susan Haywood County Schools -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: sort file

2002-02-13 Thread Jon Molin
Susan Aurand wrote: What is the fastest or best way to sort a file alphabetically, the rewrite it to a file. you'll print this very fast anyway :) sort file temp_file;mv temp_file file /Jon Thanks Susan Haywood County Schools -- To unsubscribe, e-mail: [EMAIL PROTECTED