Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

WinterWolf90

macrumors 6502a
Original poster
Jan 18, 2014
678
477
Is there way to start several downloads but have the ones started after the first to be on pause until the one before it finishes?
 

NoBoMac

Moderator
Staff member
Jul 1, 2014
6,178
4,854
If comfortable with Terminal, command line, and can decipher URLs, this will work.

Code:
cd ~/Downloads
curl -O url_to_file_to_download

For example, to download the MacRumors logo from the top of the page:

Code:
curl -O 'https://cdn.macrumors.com/images-new/logo.png'

Just put the commands into a text file and then can do from command line: source my_text_file_of_commands

Or type it out manually on the command line: hit enter, enter the next, and will build a queue.

Oh and: make sure you put the URL within quotes, otherwise might get some odd behavior.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.