Advertisement
metalx1000

Center Point Community Church Sermon Archive Scripts CPCC

Oct 9th, 2017
669
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.35 KB | None | 0 0
  1. #!/bin/bash
  2. url="https://centerpoint.sermon.net/restapi/getPostingCollection?offset=1&limit=1000&playlistId=4007030&mediaCenterId=4007070"
  3.  
  4. wget -q "$url" -O- | tr '"' '\n'|grep mp3|sed 's/\\//g'|grep 'action/download'|sort -u > url.lst
  5.  
  6. cat url.lst|while read url;do axel -n 10 "$url" -o "$(echo $url|cut -d\/ -f10,12 --output-delimiter=$'_')" ;done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement