Last active
September 30, 2019 11:51
-
-
Save ytechie/1442e0680b072b7e4dd21869443cd8a4 to your computer and use it in GitHub Desktop.
MS Devshow episode downloader
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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