Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 411 Bytes

README.md

File metadata and controls

27 lines (17 loc) · 411 Bytes

udacity-dl

A simple script to list downloadable content for a udacity course

Installation

Antigen

npm install -g udacity-dl

Usage

  • The script is invoked by providing a course number
udacity-dl <course_no>
  • So, what can we do with a list of URLs? Why, download them!
udacity-dl st101 | xargs -n 1 -I link -exec wget link \;
  • Shell MagicTM