You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh -e
|
|
|
|
(
|
|
sed -ne '1,\%/\* ECB.H BEGIN \*/%p' ev.c
|
|
cat ecb.h
|
|
sed -ne '\%/\* ECB.H END \*/%,$p' ev.c
|
|
) >ev.c~ && mv ev.c~ ev.c
|
|
|