unix join separator char

前端 未结 6 923
旧时难觅i
旧时难觅i 2020-12-14 01:30

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

6条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-14 02:13

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

    Try

    join file1 file12 -t $'\t'
    

提交回复
热议问题