根据第一个字段对内容进行排序并将第二个字段输出到新文件中

发布于 2024-09-25 19:17:31 字数 145 浏览 3 评论 0原文

我有一个像这样的文件:

 3 EOE
 5 APPLE
 6 NOBODY

我需要解析它并在unix提示符下将第一列中带有“3”的所有内容输出到filename.3,将“4”输出到filename.4等...

I've got a file which is like this:

 3 EOE
 5 APPLE
 6 NOBODY

i need to parse this and output all with '3' in the first column into filename.3, '4' into filename.4, etc... from the unix prompt

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

酸甜透明夹心 2024-10-02 19:17:31

像这样的东西应该可以工作(我还没有测试过):

while read num rest; do
   echo "$num $rest" >> "filename.$num"
done < inputFile

read 将读取一行文本,然后将其在空白处分割成“单词”,就像运行命令时一样。它将把第一个“word”分配给第一个变量名称(在本例中为num - 将获取数字),将第二个“word”分配给第二个变量名称(rest)代码>),等等。如果变量用完,它将将该行的剩余部分附加到最后一个变量(此处为rest)。

当 read 成功处理一行时,它返回零,这在 shell 脚本中是“成功”,因此 while 循环将继续执行,读取后续行。当read到达文件末尾时,它将返回1,停止while循环。

Something like this should work (I haven't tested it):

while read num rest; do
   echo "$num $rest" >> "filename.$num"
done < inputFile

read will read a line of text, then split it up on whitespace into "words", like when you run a command. It will assign the first "word" to the first variable name (num in this case - which will get the number), the second "word" to the second variable name (rest), and so on. If it runs out of variables, it will append the remainder of the line to the last variable (rest, here).

When read processes a line successfully it returns zero, which is "success" in shell scripting, so the while loop will keep going, reading subsequent lines. When read hits the end of the file, it will return 1, stopping the while loop.

梦魇绽荼蘼 2024-10-02 19:17:31
awk '{print $2 >> "filename."$1 }' filename

如果您想要行:

awk '{print $0 >> "filename."$1 }' filename
awk '{print $2 >> "filename."$1 }' filename

If you want the entire line:

awk '{print $0 >> "filename."$1 }' filename
单挑你×的.吻 2024-10-02 19:17:31

使用 bash for 循环、cut 和 grep

for i in `cut -s -d ' ' -f 1 input.txt`; do
    grep ^$i input.txt > filename.$i
done;

using bash for loops, cut and grep

for i in `cut -s -d ' ' -f 1 input.txt`; do
    grep ^$i input.txt > filename.$i
done;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文