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.
我有一个格式为
string string string ... string string string ... ... string string string ...
我想得到另一个文件,这样对于每一行,只有第一个string出现在该行中(即只取每行第一个空格之前的部分。)
string
我怎么能在 Ubuntu 中使用命令行来做到这一点?
我想你想要这个:
awk '{print $1}' < input.txt > output.txt
另一种可能的解决方案是使用 cut:
cut -f1 -d" " input.txt > output.txt