系统相关
首页 > 系统相关> > LeetCode(Shell)- 194. 转置文件

LeetCode(Shell)- 194. 转置文件

作者:互联网

题目链接:点击打开链接

题目大意:略。

解题思路

AC 代码

columns=$(cat file.txt | head -n 1 | wc -w)
for i in $(seq 1 $columns)
do
awk '{print $'$i'}' file.txt | xargs
done

相关企业

标签:xargs,Shell,seq,转置,194,head,file,txt,columns
来源: https://blog.csdn.net/Dream_Weave/article/details/122424557