Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从文件中读取行,然后我想在读取的文件上使用 split 命令。
有什么建议吗?
根据您的评论,这就是您所需要的。
awk '{print $16 + $17}' points.txt
awk 一次读取数据文件中的所有行,并通过代码中的标记列表处理每一行。如果标记匹配,则该代码行上的指令将应用于匹配行。因此,Awk 为您完成了大部分工作。