> Are you aware that '.' matches ANY character in sed? You may wish
> to add '\' before it to make it a literal period.
> ...
> >+ (echo; echo "$text"; echo) | sed 's/^.$//' | ${PAGER:-more}
> ...
> >+ echo "$text" | sed 's/^.$//'
> ...
> Should be:
> >+ (echo; echo "$text"; echo) | sed 's/^\.$//' | ${PAGER:-more}
> >+ echo "$text" | sed 's/^\.$//'
I have to admit that I wasn't, but you're the third person to make me
aware of this. A revised patch was submitted a few minutes ago...
To anybody else who's sent me the same reminder, please accept this as
your acknowledgement...
Best wishes from Riley.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu