mirror of
				https://github.com/casjaysdevdocker/youtube-dl
				synced 2025-11-04 07:02:17 -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 $?
 | 
						|
 |