Nicolas Sebrecht schrieb:
The 16/07/09, Nicolas Sebrecht wrote:
quoted
The 16/07/09, Junio C Hamano wrote:
quoted
This patch wastes an extra sed process
Should we really worry about that in a script like git-am.sh? I mean,
does it matter in a day to day work?
Oh I've forgotten, yes we need it: sed -e '/^$/q' leaves this matching
line to the output. An extra CRLF makes 'grep -v' fail.
Then make it
sed -n -e '/^$/q' -e p
This won't print the trailing empty line.
-- Hannes