Guest User

Untitled

a guest
Nov 29th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. echo "enter username : "
  4. read username
  5.  
  6. echo "enter password: "
  7. read -s password
  8.  
  9. echo "enter course: "
  10. read course
  11.  
  12. echo "enter location: "
  13. read location
  14.  
  15. 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
Add Comment
Please, Sign In to add comment