mirror of
				git://git.code.sf.net/p/zsh/code
				synced 2025-10-31 18:10:56 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			205 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			205 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #compdef watch
 | |
| 
 | |
| # watch(1) has completely different semantics on freebsd compared to linux, hence:
 | |
| case $OSTYPE in
 | |
|   (freebsd*|dragonfly*) _watch-snoop "$@";;
 | |
|   (*)           _default;;
 | |
| esac
 | |
| 
 | |
| # NOTREACHED
 |