Created
August 28, 2018 20:56
-
-
Save au5ton/84fc025bcb93a1edc12352f3e8ac6e12 to your computer and use it in GitHub Desktop.
Download all FLACs from Apollo 11 audio on Archive.org
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for i in {01..55}; do | |
curl 'https://ia601409.us.archive.org/5/items/Apollo11Audio/11-033'$i'.flac' -o '11-033'$i'.flac' | |
done | |
for i in {155..188}; do | |
curl 'https://ia601409.us.archive.org/5/items/Apollo11Audio/'$i'-AAA.flac' -o $i'-AAA.flac' | |
done | |
array=( "11-03703_1_OF_6.flac" "11-03703_2_OF_6.flac" "11-03703_3_OF_6.flac" "11-03703_4_OF_6.flac" "11-03703_5_OF_6.flac" "11-03703_6_OF_6.flac" "251-AAB.flac" "313-AAB.flac" "3142.flac" "3172.flac" "550-AAG.flac" "938-AAG.flac" "939-AAG.flac" "963-AAE.flac" "964-AAE.flac") | |
for i in "${array[@]}" | |
do | |
curl 'https://ia601409.us.archive.org/5/items/Apollo11Audio/'$i -o $i | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment