Skip to content

Instantly share code, notes, and snippets.

@goncha
Created August 27, 2013 05:19
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 goncha/6349865 to your computer and use it in GitHub Desktop.
Save goncha/6349865 to your computer and use it in GitHub Desktop.
Pull voanews mp3 files
#!/bin/sh
cd $HOME/public_html/voanews
SENEWS=$(date '+%y%m%d')_SE_NEWS.mp3
HLNEWS=$(date '+%y%m%d')_HL_NEWS.mp3
wget -O "${SENEWS}" \
"http://www.voanews.com/mp3/voa/english/spec/SPECIAL_ENGLISH_NEWS.mp3"
wget -O "${HLNEWS}" \
"http://www.voanews.com/mp3/voa/english/nnow/NNOW_HEADLINES.mp3"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment