grep:ファイル名を一度表示してから、行番号付きのコンテキストを表示します


16

ソースコードにはエラーコードが散在しています。grepを使用すると簡単に見つけることができますが、次の行に沿って出力を提供find_codeする(たとえばfind_code ####)実行できるbash関数が必要です。

/home/user/path/to/source.c

85     imagine this is code
86     this is more code
87     {
88         nicely indented
89         errorCode = 1111
90         that's the line that matched!
91         ok this block is ending
92     }
93 }

現在私が持っているものは次のとおりです。

find_code()
{
    # "= " included to avoid matching unrelated number series
    # SRCDIR is environment variable, parent dir of all of projects
    FILENAME= grep -r "= ${1}" ${SRCDIR}
    echo ${FILENAME}
    grep -A5 -B5 -r "= ${1}" ${SRCDIR} | sed -e 's/.*\.c\[-:]//g'
}

問題点:

1)これは行番号を提供しません

2).cソースファイルのみに一致します。.c、.cs、.cpp、およびその他のソースファイルに合わせてsedを取得するのに問題があります。ただし、Cを使用しているため、単に一致する-または:(コードの各行の前にファイル名にgrepが追加する文字)がobject->pointersすべて一致し、混乱します。

回答:


11

いくつかの点を変更します。

find_code() { 
    # assign all arguments (not just the first ${1}) to MATCH
    # so find_code can be used with multiple arguments:
    #    find_code errorCode
    #    find_code = 1111
    #    find_code errorCode = 1111
    MATCH="$@" 

    # For each file that has a match in it (note I use `-l` to get just the file name
    # that matches, and not the display of the matching part) I.e we get an output of:
    #
    #       srcdir/matching_file.c
    # NOT:
    #       srcdir/matching_file.c:       errorCode = 1111
    #
    grep -lr "$MATCH" ${SRCDIR} | while read file 
    do 
        # echo the filename
        echo ${file}
        # and grep the match in that file (this time using `-h` to suppress the 
        # display of the filename that actually matched, and `-n` to display the 
        # line numbers)
        grep -nh -A5 -B5 "$MATCH" "${file}"
    done 
}

これを自分の仕様に合わせて調整し直しました。エラーコードを調べたいだけです。だからMATCH="= ${1}"。また--include=*.c --include=*.cpp --include=*.java --include=*.cs、検索をソースファイルに制限するために追加しました。ありがとう!
トラビストーマス

1
良いですね、あなたがそれをあなたのニーズにうまく調整してくれてうれしいです:)
Drav Sloan

3

あなたは使用することができますfind2つので-exec最初のものだけで検索例えば、成功した場合にのみ、二つ目が実行される、S .cpp.cおよび.csファイル:

find_code() {
find ${SRCDIR} -type f \
\( -name \*.cpp -o -name \*.c -o -name \*.cs \) \
-exec grep -l "= ${1}" {} \; -exec grep -n -C5 "= ${1}" {} \;
}

最初のgrepものはパターンを含むファイル名を印刷し、2番目のものはそれぞれのファイルから一致する行+コンテキスト(番号付き)を印刷します。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.