mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 09:26:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			226 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			226 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/ksh
 | 
						|
 | 
						|
rm diff.out
 | 
						|
touch diff.out
 | 
						|
 | 
						|
for i in *.[ch]; do
 | 
						|
    diff -u -I'\$OpenBSD' $i /usr/src/usr.bin/tmux/$i >diff.tmp
 | 
						|
    set -- `wc -l diff.tmp`
 | 
						|
    [ $1 -eq 8 ] && continue
 | 
						|
    echo $i
 | 
						|
    cat diff.tmp >>diff.out
 | 
						|
done
 |