mirror of
https://github.com/openbsd/src.git
synced 2024-12-22 16:42:56 -08:00
11 lines
237 B
Sed
11 lines
237 B
Sed
|
# first line of input is the variable declaration, don't touch that
|
||
|
2,$ {
|
||
|
# XXX beware of the order ! we have to quote \ and " before inserting \n"
|
||
|
s/\\/\\\\/g
|
||
|
s/"/\\"/g
|
||
|
s/^/ "/
|
||
|
s/$/\\n"/
|
||
|
}
|
||
|
# and append a ; at the end !
|
||
|
$s/$/;/
|