mirror of
				https://github.com/wangyu-/udp2raw.git
				synced 2025-11-01 02:35:37 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			155 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			155 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh -e
 | |
| 
 | |
| (
 | |
|    sed -ne '1,\%/\* ECB.H BEGIN \*/%p' ev.c
 | |
|    cat ~/src/libecb/ecb.h
 | |
|    sed -ne '\%/\* ECB.H END \*/%,$p' ev.c
 | |
| ) >ev.c~ && mv ev.c~ ev.c
 | |
| 
 |