I need to grep for a particular port number from a huge set of files.
I am using a command:
find . |xargs grep "9461"
But it does not finds all the occurrences for number 9461. Can anyone suggest a better unix/linux command to do so.
The kind of files it gets is : x.log
, y.txt
,z.htm
, a.out
etc files
But it was not able to get abc.conf
files