Skip to content

Instantly share code, notes, and snippets.

@ytechie
Last active September 30, 2019 11:51
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 ytechie/1442e0680b072b7e4dd21869443cd8a4 to your computer and use it in GitHub Desktop.
Save ytechie/1442e0680b072b7e4dd21869443cd8a4 to your computer and use it in GitHub Desktop.
MS Devshow episode downloader
@echo off
setlocal ENABLEDELAYEDEXPANSION
FOR /L %%x IN (99,-1,10) DO (
set url="http://traffic.libsyn.com/msdevshow/msdevshow_00%%x.mp3"
echo Downloading !url!
wget -O msdevshow_00%%x.mp3 !url!
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment