unix加入分隔符char

前端之家收集整理的这篇文章主要介绍了unix加入分隔符char前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
对不起,可能是微不足道的问题。

我用unix join命令打了一下,试图获取标签而不是空格作为默认分隔符。 -t是参数,但这些不起作用(ubuntu 9.10 64位2.6.31-14,GNU coreutils版本7.4)

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

等等。当然,我可以随时使用一些不成熟的解决方

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

但是我想看起来很聪明:-)而且,如果有一个-t参数,它必须工作。

我认为它需要一个变量生成

尝试

join file1 file12 -t $'\t'
原文链接:https://www.f2er.com/bash/387518.html

猜你在找的Bash相关文章