mirror of
				https://github.com/luanti-org/luanti.git
				synced 2025-11-04 09:15:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			167 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			167 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
for i in `grep -L 'This program is free software' src/*.{h,cpp}`
 | 
						|
do
 | 
						|
	cat licensecomment.txt > tempfile
 | 
						|
	cat $i >> tempfile
 | 
						|
	cp tempfile $i
 | 
						|
done
 | 
						|
rm tempfile
 | 
						|
 |