> > I believe there is a problem with your join function. > > > I have attached two text files as an example. No matter whether they > are sorted default or -n, join fails to account for all the matches...? > I am super frustrated...the same join works on our mac osx cluster if > the files re sorted default, but not on our Linux cluster. Can you help me?
Are you sure they are sorted correctly for your locale? The difference may be explained by different locales on your two machines. Try LC_ALL=C before sort and join to ensure you are in the POSIX locale, to see if that makes a difference. http://www.gnu.org/software/coreutils/faq/coreutils-faq.html#Sort-does-not-sort-in-normal-order_0021 -- Eric Blake _______________________________________________ Bug-coreutils mailing list [email protected] http://lists.gnu.org/mailman/listinfo/bug-coreutils
