grep: visualizza il nome file una volta, quindi visualizza il contesto con i numeri di riga


16

Il nostro codice sorgente ha codici di errore sparsi ovunque. Trovarli è facile con grep, ma mi piacerebbe una funzione bash find_codeche posso eseguire (ad es. find_code ####) Che fornirà output lungo queste linee:

/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 }

Ecco quello che ho attualmente:

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'
}

I problemi:

1) Questo non fornisce numeri di riga

2) corrisponde solo ai file sorgente .c. Ho difficoltà a far corrispondere sed .c, .cs, .cpp e altri file sorgente. Usiamo C, tuttavia, in modo semplicemente corrispondente - oppure: (i caratteri che grep aggiunge al nome del file prima di ogni riga di codice) corrispondono object->pointerse rovinano tutto.

Risposte:


11

Vorrei cambiare alcune cose.

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 
}

L'ho adattato alle mie specifiche - Voglio semplicemente cercare i codici di errore. Così MATCH="= ${1}". Ho anche aggiunto --include=*.c --include=*.cpp --include=*.java --include=*.csper limitare la ricerca ai file di origine. Grazie!
TravisThomas

1
Bene oh, felice che tu sia riuscito a sintonizzarti sulle tue esigenze :)
Drav Sloan il

3

È possibile utilizzare findcon due -execs, il secondo verrà eseguito solo se il primo ha esito positivo, ad es. Ricerca solo in .cpp, .ce .csfile:

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

così il primo grepstampa i nomi dei file che contengono il tuo modello e il secondo stampa le linee corrispondenti + il contesto, numerato, dai rispettivi file.

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.