今天和大家聊的问题叫做 转置文件,我们先来看题面:https://leetcode-cn.com/problems/transpose-file/
Given a text file file.txt, transpose its content.
You may assume that each row has the same number of columns and each field is separated by the ' ' character.
题意
给定一个文件 file.txt,转置它的内容。
你可以假设每行列数相同,并且每个字段由 ' ' 分隔.
示例
示例: 假设 file.txt 文件内容如下: name age alice 21 ryan 30 应当输出: name alice ryan age 21 30
解题
思路:先用awk获取列数,再循环
k=`awk '{print NF}' file.txt | head -1` for ((i=1;i<=k;i++)) do awk '{print $'$i'}' file.txt | xargs done
好了,今天的文章就到这里,如果觉得有所收获,请顺手点个在看或者转发吧,你们的支持是我最大的动力 。