grep: एक बार फ़ाइल नाम प्रदर्शित करें, फिर लाइन संख्या के साथ संदर्भ प्रदर्शित करें


16

हमारे स्रोत कोड में त्रुटि कोड पूरे बिखरे हुए हैं। उन्हें ढूंढना grep के साथ आसान है, लेकिन मैं एक बश फ़ंक्शन चाहता हूं, find_codeजिसे मैं निष्पादित कर सकता हूं (जैसे। find_code ####) जो इन सभी के साथ आउटपुट प्रदान करेगा:

/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 स्रोत फ़ाइलों से मेल खाता है। मुझे सी। सी।, .Cs, .cpp और अन्य स्रोत फ़ाइलों से मिलान करने में समस्या हो रही है। हम 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
अच्छा ओह, खुशी है कि आप इसे अपनी आवश्यकताओं के अनुरूप बनाने में कामयाब रहे :)
द्रविण 20

3

आप इस्तेमाल कर सकते हैं findदोनों के साथ -execहै, दूसरा एक निष्पादित किया जाएगा केवल अगर पहले एक ही में खोज सफल होता है, उदाहरण के लिए .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फ़ाइलनाम जिसमें आपके पैटर्न होते हैं और दूसरा प्रिंट संबंधित लाइनों + संबंधित संख्या को संबंधित फाइलों से प्रिंट करेगा।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.