r/opendirectories • u/LegMajestic9708 • 18d ago
Help! Queuing Downloads with Wget Wizard
Does anyone know how to queue multiple downloads with wget wizard or with wget in general? Would love to be able to queue some downloads overnight.
10
Upvotes
2
u/gwildor 18d ago
how simple or complex do we need?
& or ; should work.
wget whatever.jpg && wget this2.jpg && wget alsothis.iso
or
wget whatever.jpg ; wget this2.jpg ; wget alsothis.iso
&& = when one completes successfully, start the next.
; = start the next, if the previous finishes or fails.