gpt4 book ai didi

shell - 使用剪切重新排列列

转载 作者:行者123 更新时间:2023-12-03 04:32:34 25 4
gpt4 key购买 nike

我有一个以下格式的文件

Column1    Column2str1       1str2       2str3       3

我想要重新排列列。我尝试了以下命令

cut -f2,1 file.txt

该命令不会对列重新排序。知道为什么它不起作用吗?

最佳答案

对于 cut(1) 手册页:

Use one, and only one of -b, -c or -f. Each LIST is made up of one range, or many ranges separated by commas. Selected input is written in the same order that it is read, and is written exactly once.

它首先到达字段 1,因此被打印,然后是字段 2。

改用awk:

awk '{ print $2 " " $1}' file.txt

关于shell - 使用剪切重新排列列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2129123/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com