Hi all,
I need a (sed, awk) shell script or, even better, a vim command to remove any blank lines following a line with a single opening curly bracket:
void func()
{
foo();
}
void bar()
{
helloWorld();
}
should become:
void func()
{
foo();
}
void bar()
{
helloWorld();
}
Any thoughts?