mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 00:56:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			180 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			180 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# $Id$
 | 
						|
 | 
						|
for i in *.[ch] tmux.1; do
 | 
						|
    (head -1 $i|grep '$OpenBSD' >/dev/null) || continue
 | 
						|
    mv $i $i~ || exit
 | 
						|
    sed 's/\$OpenBSD.* \$/$\Id$/' $i~ >$i || exit
 | 
						|
    echo $i
 | 
						|
done
 |