bash - 使用awk识别多行记录和过滤

标签 bash shell awk

我需要处理一个包含多行记录的大数据文件,示例输入:

1  Name      Dan
1  Title     Professor
1  Address   aaa street
1  City      xxx city
1  State     yyy
1  Phone     123-456-7890
2  Name      Luke
2  Title     Professor
2  Address   bbb street
2  City      xxx city
3  Name      Tom
3  Title     Associate Professor
3  Like      Golf
4  Name
4  Title     Trainer
4  Likes     Running

请注意,第一个整数字段是唯一的,真正标识了整条记录。所以在上面的输入中我确实有 4 条记录,虽然我不知道每条记录可能有多少行属性。我需要: - 识别有效记录(必须有“姓名”和“职务”字段) - 输出每个有效记录的可用属性,比如“姓名”、“标题”、“地址”是必需的字段。

示例输出:

1  Name      Dan
1  Title     Professor
1  Address   aaa street
2  Name      Luke
2  Title     Professor
2  Address   bbb street
3  Name      Tom
3  Title     Associate Professor

因此在输出文件中,记录 4 被删除,因为它没有“名称”字段。记录 3 没有地址字段,但仍打印到输出,因为它是具有“名称”和“标题”的有效记录。

我可以用 awk 做到这一点吗?但是我如何使用每行的第一个“id”字段来识别整个记录?

非常感谢 unix shell 脚本专家帮助我! :)

最佳答案

这似乎有效。有很多方法可以做到这一点,即使在 awk 中也是如此。

为了便于阅读,我将其隔开。

请注意,记录 3 没有显示,因为它缺少一个“地址”字段,而您认为该字段是必需的。

#!/usr/bin/awk -f

BEGIN {
        # Set your required fields here...
        required["Name"]=1;
        required["Title"]=1;
        required["Address"]=1;

        # Count the required fields
        for (i in required) enough++;
}

# Note that this will run on the first record, but only to initialize variables
$1 != last1 {
        if (hits >= enough) {
                printf("%s",output);
        }
        last1=$1; output=""; hits=0;
}

# This appends the current line to a buffer, followed by the record separator (RS)
{ output=output $0 RS }

# Count the required fields; used to determine whether to print the buffer
required[$2] { hits++ }

END {
        # Print the final buffer, since we only print on the next record
        if (hits >= enough) {
                printf("%s",output);
        }
}

关于bash - 使用awk识别多行记录和过滤,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10825272/

相关文章:

bash - 在 bash 中将时间戳插入流中

arrays - 计算 bash 数组中的唯一值

bash - 在 bash 的测试语句中运行命令

c++ - 如何将文件用作现有 C++ 程序的输入流?

mysql - 如何使用 linux 命令行提取从 mysql 通用日志访问的所有 ID?

linux - 删除Linux中某些字段的行

Rscript 和反引号

macos - 如何检查在 mac bash 应用程序启动时是否按下了选项键

bash - Shellscript 读取 XML 属性值

bash - 如何在 bash 文件中特定行的末尾附加一个字符串