Skip to content

Instantly share code, notes, and snippets.

@ahmadseleem
Last active August 29, 2015 14:02
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 ahmadseleem/6da015fe70f3d75da1b3 to your computer and use it in GitHub Desktop.
Save ahmadseleem/6da015fe70f3d75da1b3 to your computer and use it in GitHub Desktop.
#!/bin/zsh
# Download YouTube video:
cd ~/Downloads/
for file in "$@"
do
name=$(echo "$file" | cut -d '&' -f 1)
youtube-dl -o "%(title)s.%(ext)s" "$name"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment