Eric Blake <[email protected]> writes: > Or there's even this more portable alternative (although it costs a fork): > $ join -t `printf '\t'` file1 file2
This requires more quotes, so that word splitting won't gobble the tab. $ join -t "`printf '\t'`" file1 file2 Andreas. -- Andreas Schwab, [email protected] GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different." _______________________________________________ Bug-coreutils mailing list [email protected] http://lists.gnu.org/mailman/listinfo/bug-coreutils
