mirror of
				git://git.code.sf.net/p/zsh/code
				synced 2025-11-04 07:21:06 +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
 |