Skip to content

Instantly share code, notes, and snippets.

@R4wm
Created April 9, 2021 01:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save R4wm/aaf67f7c8784aec8f854c3ca7c393faa to your computer and use it in GitHub Desktop.
Save R4wm/aaf67f7c8784aec8f854c3ca7c393faa to your computer and use it in GitHub Desktop.
get all singthekjv.app mp3
for i in $(curl 'https://singthekjv.app/scripture-songs' | egrep -o 'data-path=".*"' | tr " " "\n" | egrep "*.mp3" | cut -f2 -d'=' | tr -d '"'); do wget --tries=3 "https://singthekjv.app/$i" ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment