mirror of
				https://github.com/pi-hole/pi-hole.git
				synced 2025-10-31 03:34:31 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			395 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			395 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| _pihole() {
 | |
| 	local cur prev opts
 | |
| 	COMPREPLY=()
 | |
| 	cur="${COMP_WORDS[COMP_CWORD]}"
 | |
| 	prev="${COMP_WORDS[COMP_CWORD-1]}"
 | |
| 	opts="admin blacklist chronometer debug disable enable flush help logging query reconfigure restartdns setupLCD status tail uninstall updateGravity updatePihole version whitelist checkout"
 | |
| 
 | |
| 	COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
 | |
| 	return 0
 | |
| }
 | |
| complete -F _pihole pihole
 |