mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 08:12:27 -04:00
10 lines
62 B
Sed
10 lines
62 B
Sed
|
|
/[^\\]$/ {
|
||
|
|
p;
|
||
|
|
}
|
||
|
|
/\\$/ {
|
||
|
|
N;
|
||
|
|
s/\\\n\([0-9]\)$/\1/g;
|
||
|
|
p;
|
||
|
|
}
|
||
|
|
d;
|