Hi,
After a few days head scratching I thought I'd ask this one. Basically what I want to do is this:
I have 2 files one containing urls called url with each url on a new line and another containing words called keywords with each keyword on a new line I want to search the url file for each of the keywords in the keyword file and output any matches to the file output
I can do this for individual keywords using awk '/word1/||/word2/||/word3/' url > output But I need a way to do it for a load of keywords.
Anyone got any thoughts?
Cheers,
Ben