mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			451 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			451 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| __youtube_dl()
 | |
| {
 | |
|     local cur prev opts
 | |
|     COMPREPLY=()
 | |
|     cur="${COMP_WORDS[COMP_CWORD]}"
 | |
|     opts="{{flags}}"
 | |
|     keywords=":ytfavorites :ytrecommended :ytsubscriptions :ytwatchlater"
 | |
| 
 | |
|     if [[ ${cur} =~ : ]]; then
 | |
|         COMPREPLY=( $(compgen -W "${keywords}" -- ${cur}) )
 | |
|         return 0
 | |
|     elif [[ ${cur} == * ]] ; then
 | |
|         COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
 | |
|         return 0
 | |
|     fi
 | |
| }
 | |
| 
 | |
| complete -F __youtube_dl youtube-dl
 |