mirror of
https://github.com/casjaysdevdocker/youtube-dl
synced 2025-01-18 12:34:29 -05:00
9 lines
250 B
Bash
9 lines
250 B
Bash
#!/usr/bin/env sh
|
|
# Set bash options
|
|
[ -n "$DEBUG" ] && set -x
|
|
set -o pipefail
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
youtube-dl -f bestvideo+bestaudio --config-location "$HOME/.config/youtube-dl/video" "$@"
|
|
exit $?
|
|
|