mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-29 06:50:32 +00:00
9 lines
139 B
Plaintext
Executable File
9 lines
139 B
Plaintext
Executable File
# sed script for BFD header files
|
|
# Merge adjacent blank lines. Loop til no change.
|
|
:blin
|
|
/^$/,/^ *[^ ]*.*$/{
|
|
/^$/N
|
|
s/^ *\n *$//
|
|
}
|
|
t blin
|