Re: problem with join command

2008-04-03 Thread Bob Proulx
kevin wrote: > I want to use join command with this 2 files : > test1: > 1 a > 2 a > 3 a > 45 a > 78 a > 152 a > 1896 a The input files to join must be sorted. The above is not. Please see this reference for more information. http://www.gnu.org/software/coreutils/faq/coreutils-faq.html#join

problem with join command

2008-04-03 Thread kevin
I forget to give you the version of coreutils : 5.97-5.3ubuntu3 Thanks for your help ___ Bug-coreutils mailing list Bug-coreutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-coreutils

problem with join command

2008-04-03 Thread kevin
I want to use join command with this 2 files : test1: 1 a 2 a 3 a 45 a 78 a 152 a 1896 a test2: 1 a 2 a 3 a 152 a 1896 a When i do : join test1 test2 the result is : 1 a 2 a 3 a and not : 1 a 2 a 3 a 152 a 1896 a Thanks for your help Kevin ___ Bu