With aria2 you can use the terminal to parse the file and download it in parallel, just like the Internet Download Manager.
aria2c -x4 -s4 -c -d /path/to/download/folder -i download-links.txt
Parameters:
-x4 -s4 = 4 links, 4 parts
-c = Continue (resume incomplete downloads)
-d /folder/path = Download folder
-i download-list.txt = Input file (URL list)
download-list.txt:
https://example.com/dosya1.zip
https://example.com/dosya2.pdf
https://releases.ubuntu.com/22.04/ubuntu-22.04.iso
ftp://ftp.example.com/dosya3.tar.gz
aria2c --dry-run -i download-list.txt
--dry-run with this parameter you can verify if the links are broken.