Description
If a file does not begins with the following block:
/*
* My copyright
* 2009
*/
|
then prepend that block to the file.
|
| Raw Input
|
| Desired Output
| line 1
line 2
line 3
line 4
line 5
line 6
line 7
|
| /*
* My copyright
* 2009
*/
line 1
line 2
line 3
line 4
line 5
line 6
line 7
|
|
Script and Comments
Script1 [ 1] $!N
[ 2] $!N
[ 3] $!N
[ 4] /\/\*\n \* My copyright\n \* 2009\n \*\//!i\
[ 5] /*\
[ 6] * My copyright\
[ 7] * 2009\
[ 8] */
[ 9] :loop
[10] n
[11] b loop
| |
|