如何使用 awk 打印每 4 列到第 n 列以及从第 (n+1) 列到最后一列?

发布于 2024-10-19 13:07:31 字数 235 浏览 1 评论 0原文

我有一个由空格分隔的 119 列的数据集,喜欢选择列 (3,7,11,...,47,51), (52,53,54,...,118,119) 并将其打印到另一个文件。我如何使用 awk 来做到这一点?

Input file 

c1 c2 c3...c119

Output file

c3 c7 c11 ... c51 c52 c53 c54 ... c118 c119 

感谢您的帮助

I have a dataset with 119 columns separated by a space and like to select columns (3,7,11,...,47,51), (52,53,54,...,118,119) and print them out to another file. How can I do this using awk?

Input file 

c1 c2 c3...c119

Output file

c3 c7 c11 ... c51 c52 c53 c54 ... c118 c119 

Thanks for your help

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

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

发布评论

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

评论(4

心的位置 2024-10-26 13:07:31
awk '{for(i=3;i<=51;i+=4) printf "%s ",$i ;for(i=52;i<=119;i++) {printf "%s ",$i} ;print ""}' file
awk '{for(i=3;i<=51;i+=4) printf "%s ",$i ;for(i=52;i<=119;i++) {printf "%s ",$i} ;print ""}' file
铁轨上的流浪者 2024-10-26 13:07:31
{a=""; 
 for (i=0 ;i<=12; i++) {a = a  $(3+4 * i) " "};
 for (i=52 ;i<=119; i++) {a = a  $(i) " "};
 print a}  

哈!

{a=""; 
 for (i=0 ;i<=12; i++) {a = a  $(3+4 * i) " "};
 for (i=52 ;i<=119; i++) {a = a  $(i) " "};
 print a}  

HTH!

枫以 2024-10-26 13:07:31

这是您要找的吗?

awk '{s=""; for (i = 3; i <= 51; i+=4) {s = s $i " "}; for (i = 52; i <= 119; i++) {s = s $i " "}; print s}' inputfile

Is this what you're looking for?

awk '{s=""; for (i = 3; i <= 51; i+=4) {s = s $i " "}; for (i = 52; i <= 119; i++) {s = s $i " "}; print s}' inputfile
心不设防 2024-10-26 13:07:31
awk 'for(i=3;i<=119;i+a) 
     {
     if (i<52)
     {
     printf "%s ",$i};
     a=4;
     }
     else
     {
     printf "%s ",$i};
     a=1;
     }
     }' file
awk 'for(i=3;i<=119;i+a) 
     {
     if (i<52)
     {
     printf "%s ",$i};
     a=4;
     }
     else
     {
     printf "%s ",$i};
     a=1;
     }
     }' file
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文