Skip to content

Instantly share code, notes, and snippets.

@ahmedash95
Forked from melkopisi/pluralsight-dl.sh
Created December 14, 2017 01:09
Show Gist options
  • Save ahmedash95/c604e01e36b3a1977216c1c0bbca6101 to your computer and use it in GitHub Desktop.
Save ahmedash95/c604e01e36b3a1977216c1c0bbca6101 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