Skip to content

Instantly share code, notes, and snippets.

@qdzlug
Forked from cwvhogue/Manta_Getty_Originals.sh
Last active August 29, 2015 14:16
Show Gist options
  • Save qdzlug/a3171beee7ab064eeccd to your computer and use it in GitHub Desktop.
Save qdzlug/a3171beee7ab064eeccd to your computer and use it in GitHub Desktop.
#!/bin/bash
SITE="https://us-east.manta.joyent.com/mantademo/public/images/getty-open/"
DEST="/$MANTA_USER/public/"
# For more files change "-20" below to a larger number.
# For the complete download, remove "head -20 |" below
mmkdir -p ${DEST}/originals
curl -ksL ${SITE}/filelist.txt | head -20 | mput ${DEST}/filelist.txt
echo ${DEST}/filelist.txt | mjob create -m "xargs -I {} sh -c 'curl -ksL ${SITE}/originals/{} | mput ${DEST}/originals/{}'"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment