如何在 bash 中获取制表符 delim 文件中的第二列和第三列?

发布于 11-15 02:00 字数 46 浏览 4 评论 0原文

我想使用 bash 处理制表符分隔的文件。我只需要第二列和第三列到一个新文件。

I want to use bash to process a tab delimited file. I only need the second column and third to a new file.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

地狱即天堂2024-11-22 02:00:41

cut(1) 是专门为此目的而制作的:

cut -f 2-3 input.txt > output.txt

cut(1) was made expressly for this purpose:

cut -f 2-3 input.txt > output.txt
情话难免假2024-11-22 02:00:41

Cut 可能是最好的选择,其次是 awk

awk -F"\t" '{print $2 "\t" $3}' input > out

Cut is probably the best choice here, second to that is awk

awk -F"\t" '{print $2 "\t" $3}' input > out
梦开始←不甜2024-11-22 02:00:41

扩展 carl-norum 的答案,仅使用制表符作为分隔符,而不是全部空格:

cut -d

不要在 d 和 $ 之间放置空格

\t' -f 2-3 input.txt > output.txt

不要在 d 和 $ 之间放置空格

expanding on the answer of carl-norum, using only tab as a delimiter, not all blanks:

cut -d

don't put a space between d and $

\t' -f 2-3 input.txt > output.txt

don't put a space between d and $

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文