Sorry for the maybe trivial question.

I fought a bit with the unix join command, trying to get tabs instead of whitespaces as the default separators. -t is the argument, but these don't work (ubuntu 9.10 64 bit 2.6.31-14, GNU coreutils version 7.4)

join file1 file2 -t"\t"
join file1 file2 -t="\t"
join file1 file2 -t="\\t"
join file1 file2 -t $"\t"

Et cetera. Of course, I can always use some inelegant solution like

join file1 file2 > output
sed "s/ /\t/g" output

But I wanted to look smart :-) Moreover, if there's a -t argument, it must work.

link

when use -t, as stated in man page, it says "Use character CHAR as the input and output field separator." when both your files have same terminator, then it works. – ghostdog74 Nov 12 '09 at 14:13
feedback

3 Answers

up vote 7 down vote accepted

I think it takes a variable generated on-the-fly

Try

join file1 file12 -t $'\t'
link
genius. it works! – Federico Giorgi Nov 12 '09 at 14:07
Cool. I didn't know the $'...' syntax before. – Boldewyn Nov 12 '09 at 14:16
feedback

man join says, that the options have to come in front of the filenames. Have you tried

join -t "\t" file1 file2

?

Edit: Reflecting Tonio's answer, the correct line would read

join -t $'\t' file1 file2
link
Yep, doesn't work. It gives the error: join: multi-character tab `\\t' – Federico Giorgi Nov 12 '09 at 13:59
Remove the quotes? At least the error message disappears on my terminal. – Boldewyn Nov 12 '09 at 14:01
I agree, error disappears, but the output is wrongly empty like this :-/ – Federico Giorgi Nov 12 '09 at 14:04
OK, it's no good having both no error messages and no output... – Boldewyn Nov 12 '09 at 14:17
feedback
join -t "`echo '\t'`" file1 file2

ps: on my machine, Red Hat Enterprise Linux Server release 5.1 (Tikanga), the command join -t $'\t' file1 file2 returns "Illegal variable name".

link
Thanks for adding a distro-specific solution – Federico Giorgi Mar 1 at 18:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.