I'd like to preface this by saying that I'm very new to the command prompt and I've been only using it for some WGET and YOUTUBE-DL, and that I'm on a Windows 8 PC.
I'd like to get a bunch of links from an html file. The links all start with
https://s-media-cache-ak0.pinimg.com/originals/
and end with
.jpg
Right now I'm using this:
findstr ^https://s-media-cache-ak0.pinimg.com/originals/.*\.jpg index.html > urls.txt
I did some research and I'm using the "range" function of FINDSTR as you can see. But I still get a lot of extra text that I'm not interested in. Is there anyway to trim it down?