"Tari Drumgo" <[EMAIL PROTECTED]> writes: > join -t: -a1 -j1 1 -j2 1 pnn pnum > pacetrep
This is using the obsolete syntax for 'join'. That may or may not work, depending on how your 'join' was built and what the environment is. Try using the modern syntax instead. That should always work: join -t: -a1 -1 1 -2 1 pnn pnum > pacetrep Or, since "-1 1 -2 1" is the default, simply: join -t: -a1 pnn pnum > pacetrep _______________________________________________ Bug-coreutils mailing list [email protected] http://lists.gnu.org/mailman/listinfo/bug-coreutils
