J
Jon Smith
I need to run a find or findstr command on a dir with text files, and I need
the lines reterned that get matches, but I DON'T want the file names as
well, just the strings from the files. is there anyway to do that? I've
been pulling my hair out on this one.
the output I'm getting from FIND is
****************
FIND "BASEURL" *.url
---------- SLASHDOT.URL
BASEURL=http://slashdot.org/
---------- THE REGISTER USA.URL
BASEURL=http://www.theregus.com/
****************
and on findstr I'm getting
****************
Slashdot.url:BASEURL=http://slashdot.org/
The Register USA.url:BASEURL=http://www.theregus.com/
****************
but what I want is
****************
http://slashdot.org/
http://www.theregus.com/
****************
thanks
the lines reterned that get matches, but I DON'T want the file names as
well, just the strings from the files. is there anyway to do that? I've
been pulling my hair out on this one.
the output I'm getting from FIND is
****************
FIND "BASEURL" *.url
---------- SLASHDOT.URL
BASEURL=http://slashdot.org/
---------- THE REGISTER USA.URL
BASEURL=http://www.theregus.com/
****************
and on findstr I'm getting
****************
Slashdot.url:BASEURL=http://slashdot.org/
The Register USA.url:BASEURL=http://www.theregus.com/
****************
but what I want is
****************
http://slashdot.org/
http://www.theregus.com/
****************
thanks