Aug 1, 2002 #1 raypru Technical User Apr 9, 2002 26 GB I need to search, using fgrep, for some text down through sub directories. Can someone provide the syntax. Thanks
I need to search, using fgrep, for some text down through sub directories. Can someone provide the syntax. Thanks
Aug 1, 2002 1 #2 CaKiwi Programmer Apr 8, 2001 1,294 US To find text in .txt files in the current directory and all sub-directories, try find . -name \*.txt -exec fgrep text /dev/null {} \; CaKiwi Upvote 0 Downvote
To find text in .txt files in the current directory and all sub-directories, try find . -name \*.txt -exec fgrep text /dev/null {} \; CaKiwi