LeetCode Shell 194. 转置文件

Posted Alex Hub

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode Shell 194. 转置文件相关的知识,希望对你有一定的参考价值。

194. 转置文件

Ideas

解题思路为一列一列的读取文本,再使用xargs命令将列平铺开。

读取列可以使用awk命令。

Code

count=$(head -1 file.txt | wc -w)
for ((i = 1; i <= count; i++)); do
  awk -v arg=$i '{print $arg}' file.txt | xargs
done

以上是关于LeetCode Shell 194. 转置文件的主要内容,如果未能解决你的问题,请参考以下文章

⭐️ LeetCode解题系列 ⭐️ 194. 转置文件(Shell)

LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行

LeetCode(Shell)- 194. 转置文件

LeetCode(Shell)- 194. 转置文件

Leetcode No.194 转置文件(xargs)

Leetcode No.194 转置文件(xargs)