On Fri, 18 Apr 2008, Junio C Hamano wrote: > > - (echo "$SUBJECT" ; echo ; cat "$dotest/msg") | > + (printf '%s\n' "$SUBJECT" ; echo ; cat "$dotest/msg") | Well, get rid of the superfluous second 'echo' then too, replacing it with another '\n'. IOW: ( printf '%s\n\n' "$SUBJECT" ; cat "$dotest/msg" ) | instead. Linus -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html