Downloading files using Chrome console

2

2

I'm new to this (and i don't speak English).

I want to download a bunch of mp4-files, I know the location of each file but I don't want to open and "right-click-save-as" for each file. Is there a way to download the files using the console built into Google Chrome?

Let's say the location of the file is http://www.google.com/movies/test.mp4. What's the command for downloading that file immediately?

Geeee

Posted 2013-11-02T12:15:13.487

Reputation: 21

why not get wget or some other cli tool - you can even give wget a list of links and get it to download all of them, IIRC – Journeyman Geek – 2013-11-02T12:18:26.900

Thanks, I used while read line; do curl -O "$line"; done < urls.txt – Geeee – 2013-11-02T12:55:21.333

No answers