<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic How to replace &amp;quot; by \&amp;quot; in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/how-to-replace-quot-by-quot/m-p/5171136#M50645</link>
    <description>Hi Guys&lt;BR /&gt;&lt;BR /&gt;How to replace " by \"&lt;BR /&gt;&lt;BR /&gt;Bests Regards&lt;BR /&gt;Den</description>
    <pubDate>Wed, 22 Apr 2009 19:05:36 GMT</pubDate>
    <dc:creator>Leo The Cat</dc:creator>
    <dc:date>2009-04-22T19:05:36Z</dc:date>
    <item>
      <title>How to replace " by \"</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-replace-quot-by-quot/m-p/5171136#M50645</link>
      <description>Hi Guys&lt;BR /&gt;&lt;BR /&gt;How to replace " by \"&lt;BR /&gt;&lt;BR /&gt;Bests Regards&lt;BR /&gt;Den</description>
      <pubDate>Wed, 22 Apr 2009 19:05:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-replace-quot-by-quot/m-p/5171136#M50645</guid>
      <dc:creator>Leo The Cat</dc:creator>
      <dc:date>2009-04-22T19:05:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to replace " by \"</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-replace-quot-by-quot/m-p/5171137#M50646</link>
      <description>In what context?&lt;BR /&gt;&lt;BR /&gt;For example:&lt;BR /&gt;$ echo 'by \' | sed -e 's!by \\!something else!g'&lt;BR /&gt;something else&lt;BR /&gt;&lt;BR /&gt;MK</description>
      <pubDate>Wed, 22 Apr 2009 19:10:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-replace-quot-by-quot/m-p/5171137#M50646</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2009-04-22T19:10:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to replace " by \"</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-replace-quot-by-quot/m-p/5171138#M50647</link>
      <description>Hummm example:&lt;BR /&gt;&lt;BR /&gt;Signal=$(myfunccall)&lt;BR /&gt;&lt;BR /&gt;echo $Signal &lt;BR /&gt;=&amp;gt; Dump Event "user" sending&lt;BR /&gt;&lt;BR /&gt;java -jar myclass.jar "$Signal_information"&lt;BR /&gt;=&amp;gt; I want to have only one parameter here like this&lt;BR /&gt;&lt;BR /&gt;=&amp;gt; Dump Event \"user\" sending&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Bests regards&lt;BR /&gt;Den&lt;BR /&gt;</description>
      <pubDate>Wed, 22 Apr 2009 19:21:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-replace-quot-by-quot/m-p/5171138#M50647</guid>
      <dc:creator>Leo The Cat</dc:creator>
      <dc:date>2009-04-22T19:21:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to replace " by \"</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-replace-quot-by-quot/m-p/5171139#M50648</link>
      <description>$ Signal='Dump Event "user" sending'&lt;BR /&gt;$ echo $Signal&lt;BR /&gt;Dump Event "user" sending&lt;BR /&gt;$ echo $Signal | sed 's/"/\\"/g'&lt;BR /&gt;Dump Event \"user\" sending&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 22 Apr 2009 19:44:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-replace-quot-by-quot/m-p/5171139#M50648</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2009-04-22T19:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to replace " by \"</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-replace-quot-by-quot/m-p/5171140#M50649</link>
      <description>Ivan solution is efficient !&lt;BR /&gt;Thanks a lot.</description>
      <pubDate>Wed, 22 Apr 2009 20:00:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-replace-quot-by-quot/m-p/5171140#M50649</guid>
      <dc:creator>Leo The Cat</dc:creator>
      <dc:date>2009-04-22T20:00:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to replace " by \"</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-replace-quot-by-quot/m-p/5171141#M50650</link>
      <description>The bash printf builtin has a %q format to quote strings for reuse by bash.&lt;BR /&gt;It may work well with other parsers.&lt;BR /&gt;It will backslash quote characters like spaces, quotes, and ampersands.&lt;BR /&gt;Here is an example with %s and %q formats.&lt;BR /&gt;&lt;BR /&gt;$ printf "%s\n" 'try "double quoted" + '"'"'single quoted'"'"' &amp;amp; \t backquoted text' &lt;BR /&gt;try "double quoted" + 'single quoted' &amp;amp; \t backquoted text&lt;BR /&gt;$ printf "%q\n" 'try "double quoted" + '"'"'single quoted'"'"' &amp;amp; \t backquoted text' &lt;BR /&gt;try\ \"double\ quoted\"\ +\ \'single\ quoted\'\ \&amp;amp;\ \\t\ backquoted\ text&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 24 Apr 2009 18:09:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-replace-quot-by-quot/m-p/5171141#M50650</guid>
      <dc:creator>Mike Stroyan</dc:creator>
      <dc:date>2009-04-24T18:09:44Z</dc:date>
    </item>
  </channel>
</rss>

