Hii,

Am Mittwoch, 09. Jul 2008, 00:35:32 -0700 schrieb Unga:
> I want to translate following GNU sed lines to FreeBSD sed:
> 
> 1. sed -e '/\*address:/{n;[EMAIL PROTECTED]@replaceText @}'
> 2. sed -e '/\*address:/{n;[EMAIL PROTECTED]@ [EMAIL PROTECTED]'

An obvious problem is that a semicolon is missing before the closing
brace.

    sed -e '/\*address:/{n;[EMAIL PROTECTED]@replaceText @;}'

I'm almost sure your version won't work with GNU sed either.

Bertram


-- 
Bertram Scharpf
Stuttgart, Deutschland/Germany
http://www.bertram-scharpf.de
_______________________________________________
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to