bug-gnu-utils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Problem with 'sed' command


From: Paolo Bonzini
Subject: Re: Problem with 'sed' command
Date: Tue, 10 Jul 2007 17:02:51 -0400
User-agent: Thunderbird 2.0.0.4 (Macintosh/20070604)


sed 's/Kitten'/Kitten"/g' cat.txt

but it throws and error saying

Unmatched '

This is actually a shell error. You are welcome to send requests like this to forums such as address@hidden; the short answer is to use proper shell quoting, as in

  sed "s/Kitten\'/Kitten\"/g" cat.txt

Paolo




reply via email to

[Prev in Thread] Current Thread [Next in Thread]