Skip to content

Instantly share code, notes, and snippets.

@R4wm
Created April 9, 2021 01:21
Show Gist options
  • Select an option

  • Save R4wm/aaf67f7c8784aec8f854c3ca7c393faa to your computer and use it in GitHub Desktop.

Select an option

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