Skip to content

Instantly share code, notes, and snippets.

@melkopisi
Last active December 14, 2017 01:09
Show Gist options
  • Save melkopisi/b114dbad4da2b86118b3b2ed59db81c4 to your computer and use it in GitHub Desktop.
Save melkopisi/b114dbad4da2b86118b3b2ed59db81c4 to your computer and use it in GitHub Desktop.
download lists from pluralsight using youtube-dl
#!/bin/bash
echo "enter username : "
read username
echo "enter password: "
read -s password
echo "enter course: "
read course
echo "enter location: "
read location
youtube-dl --username $username --password $password $course -o $location/"%(playlist)s/%(chapter_number)s. %(chapter)s/%(playlist_index)s. %(title)s.%(ext)s" --sleep-interval 15 --all-subs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment