Nota: isso não é específico do IE.
Você pode criar um script JS como esse e executá-lo a partir da linha de comando usando "cscript.exe".
// Create object
var objXMLHTTP = new ActiveXObject("MSXML2.XMLHTTP")
// Get the web page - Change to your page!
objXMLHTTP.open("GET", "http://www.google.com/index.html", false);
objXMLHTTP.send()
// Your list of words
var words = ["word1", "word4", "word12", "word24"];
// Get line
if (objXMLHTTP.Status == 200) {
// Simple regex. You can change this if needed
var re = new RegExp("(" + words.join("|") + ")", "i");
// Break file into lines
var lines = objXMLHTTP.responseText.split("\n");
// Go through each line
for (var i = 0; i < lines.length; i++) {
// If it's a match, print it
if (lines[i].match(re)) {
WScript.Echo(lines[i]);
}
}
}