Skip to content

Instantly share code, notes, and snippets.

@janbaer
Created January 25, 2019 20:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save janbaer/5f8cf777e927413a4017171aa7250743 to your computer and use it in GitHub Desktop.
Save janbaer/5f8cf777e927413a4017171aa7250743 to your computer and use it in GitHub Desktop.
Read all lines from the passed file and do something with each line
while IFS='' read -r line || [[ -n "$line" ]]; do
youtube-dl -f 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best' $line
done < "$1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment