- Find an item that you'd like to download (for example: https://archive.org/details/SuperNintendoUSACollectionByGhostware)
- Grab its "identifier" (you can see it in the HTML of the page, but otherwise just use the last part of the URL for a "details" page)
At this point, you could just download the files by clicking on them on the HTML page, but that's slow and concurrent-download-limited... Sooo...
- Go to https://github.com/jjjake/internetarchive
- Follow the installation instructions
Using the identifier found in the first step, replace item_identifier_goes_here
:
ia download item_identifier_goes_here
(Optionally, use the -C
argument/option to allow for more easily resuming downloads later)
Using the identifier found in the first step, replace item_identifier_goes_here
:
ia download item_identifier_goes_here file-name-here other-file-name-here
Using the identifier found in the first step, replace item_identifier_goes_here
:
- List the files in the item and write them to a file
ia list item_identifier_goes_here > file-list.txt
- Modify the list to your liking
vim file-list.txt
- Download the files based on the list
cat file-list.txt | parallel 'ia download item_identifier_goes_here '{}' -C'
- ???
- Profit