12 lines
		
	
	
		
			240 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			240 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| ugrep --exclude-dir="CVS" \
 | |
|       --include="*.h" \
 | |
|       --include="*.c" \
 | |
|       --include="*.txt" \
 | |
|       --include="*.pl" \
 | |
|       --include="*.pm" \
 | |
|       --include="*.sh" \
 | |
|       --recursive \
 | |
|       "$@" \
 | |
|       /usr/src/sys/
 | 
