• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Need quick help - search for list of numbers within a bigger list

Valhalla1

Diamond Member
I have a list of a few thousand 6 digit numbers

I have a much bigger list with 6 digit numbers and words and other crap.


I want to search the big list to see how many of the small list shows up in the big list. if any in the small list dont show up, tell me which ones.

I know this is easy but I dont know which tool. I have a linux or windows box I can use, ms office or whatever windows programs or I can use grep or whatever. thanks for any quick answer!

 
Use a shell script that reads the first list and uses grep to tell you how many times each number appears in the second list. Then output the whole thing to a file.
 
okay no time for poking thru man pages, I found a tool 'powergrep' for windows which is working for me for now. will refine the process later
 
Back
Top