查找与位于不同行中的模式匹配的文件

时间:2017-05-26 16:49:48

标签: linux shell grep pcregrep

我正在编写一个程序,可以找到与用户给出的两种模式匹配的文件(日期和ID),两种模式都位于每个文件内的不同行中。这些文件位于不同的.zip子文件夹中。我的代码无效,我正在尝试使用PCRE DOTALL。

档案样本:

    TextTextTextTextText
    TextTextText: [20-MAY-2017]
    TextTextTextTextText
    TextTextTextTextText
    TextTextTextTextText
    TextTextText: [123456]

我正在使用的代码:

        echo "Set a specific Date [ DD-MM-YYYY ]: "
        read -r Date
        echo -e "Introduce ID: "
        read -r ID
        #Search pattern
        grep -Pzo '(?s)$Date.*\n.*$ID' .

1 个答案:

答案 0 :(得分:1)

您不能在单引号字符串中使用变量。试试这个:

#!/bin/bash
read -r -p "Set a specific Date [ DD-MMM-YYYY ]: " searchdate
read -r -p "Introduce ID: " searchid
grep -Pzo "(?s)\[$searchdate\].*\[$searchid\]" sample.txt

如果您的输入中没有/个字符,您还可以使用更简单的awk命令:

awk "/$searchdate/,/$searchid/" sample.txt