blob: 37b1ec0e7862075bfa2c3f86f0d38437b9670ac7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# 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/$/;/
|