Hello, I noticed a minor problem here. (It was also present in the previous version:
On Fri, May 13, 2005 at 12:04:35AM -0700, Paul Eggert wrote:
> ... | sed -e '/^$/d;' -e 's/^/ /'
I'd use either
sed '/^$/d;s/^/ /'
or
sed -e '/^$/d' -e 's/^/ /'
I'm afraid that the extra semicolon could cause problems with some seds.
Stepan
_______________________________________________
bug-gnulib mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-gnulib
