]> Sergey Matveev's repositories - dotfiles.git/blob - youtube-dl/bin/yt
Automatically prepend youtube URL
[dotfiles.git] / youtube-dl / bin / yt
1 #!/usr/local/bin/zsh
2
3 . ~/work/youtube-venv/bin/activate
4 url=${@[${#@}]}
5 args=(${@[1,${#@}-1]})
6 [[ ${#url} -eq 11 ]] && url=https://www.youtube.com/watch?v=$url
7 yt-dlp --config-location ~/.youtube-dl.conf ${=args} $url