2022-10-07 15:56:48 -04:00
|
|
|
#!/usr/bin/env sh
|
2022-10-11 16:09:09 -04:00
|
|
|
# Set bash options
|
|
|
|
|
[ -n "$DEBUG" ] && set -x
|
|
|
|
|
set -o pipefail
|
|
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2022-10-07 15:56:48 -04:00
|
|
|
youtube-dl -f bestvideo+bestaudio --config-location "$HOME/.config/youtube-dl/video" "$@"
|
|
|
|
|
exit $?
|
|
|
|
|
|