
1. Create a new text file and rename it to whatever you want. You can also create a text file via the terminal using this command (I will name the text file as download.txt):
touch download.txt
2. Insert now all your links inside this text file, then run this command to bulk download links stored in that file:
wget -i download.txt
All files will be downloaded to the current folder.
That's it!
Post a Comment