ggrep for systems too old to run gnu grep

Feb 14, 2022 19:35

When you need to recursively grep for a keyword in an older system which otherwise has no such functionality:

find . -type f -exec grep keyword {} /dev/null \;

unix, linux

Previous post Next post
Up