How to modify this Script recursive search using awk script to replace by a file with lines of patterns to search?
For example.
find . -type f -exec awk '/FILE_WITH_LINES_TO_SEARCH.txt/{print FILENAME ":t" $0;}' '{}' ;
Thank you for any hints.
How to modify this Script recursive search using awk script to replace by a file with lines of patterns to search?
For example.
find . -type f -exec awk '/FILE_WITH_LINES_TO_SEARCH.txt/{print FILENAME ":t" $0;}' '{}' ;
Thank you for any hints.