gpt4 book ai didi

text - linux中根据名称对文本文件进行分组

转载 作者:行者123 更新时间:2023-12-01 05:03:44 25 4
gpt4 key购买 nike

在没有大量正则表达式或 awk 经验的情况下使用 linux,并且不确定最好的方法是什么。

我有一个看起来像的文本文件

492 "Steve Smith"
455 "Steve Smith"
322 "Steve Smith"
123 "John Doe"
234 "John Doe"
etc.

我想要的输出是:
Steve Smith - 492, 455, 322
John Doe - 123, 234

最佳答案

您可以将文件导入 sqlite3 数据库,并进行选择查询。

$ sudo apt install sqlite3
$ sqlite3
> create table test (num integer, name text);
> .separator " "
> .import your_file test
> select name || " - " || group_concat(num) from test group by name;

关于text - linux中根据名称对文本文件进行分组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48314567/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com