Re: Please help with adding spaces between '#include' and '<...>'.

David Thompson <[email protected]> Tue, 3 Jul 2012 08:38:21 -0700 (PDT)
Newsgroups gmane.comp.gnu.indent.bugs
Message-ID <[email protected]>
From: Oleksandr Gavenko <[email protected]>

> I get sources with lines like:
> 
>   #include<stdio.h>
>   #include"locals.h"

[snip]

> Currently I run 'sed'...

[a bit off-topic, but ...]

If your sed solution requires a temporary file,
try using this perl command line,

  perl -p -i -e 's/^#include</#include </' files...

which does not require a temporary file; perl does
the search & replace all in one command.

I call this the "perl pie" solution.