<?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 Re: sed limitation 100 commands HP-UX with patch PHCO_31246 in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/sed-limitation-100-commands-hp-ux-with-patch-phco-31246/m-p/4199698#M91464</link>
    <description>Hi Trish:&lt;BR /&gt;&lt;BR /&gt;The patch makes no mention of increasing the 100-ccommand limit and *it doesn't*.  You can test that this way:&lt;BR /&gt;&lt;BR /&gt;# perl -le 'print "s/a/b/g" for (1..99)' &amp;gt; /tmp/sedprog&lt;BR /&gt;&lt;BR /&gt;# echo "aaa" | -f /tmp/sedprog&lt;BR /&gt;bbb&lt;BR /&gt;&lt;BR /&gt;# perl -le 'print "s/a/b/g" for (1..100)' &amp;gt; /tmp/sedprog&lt;BR /&gt;sed: There are too many commands for the s/a/b/g function.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;</description>
    <pubDate>Fri, 16 May 2008 21:36:48 GMT</pubDate>
    <dc:creator>James R. Ferguson</dc:creator>
    <dc:date>2008-05-16T21:36:48Z</dc:date>
    <item>
      <title>sed limitation 100 commands HP-UX with patch PHCO_31246</title>
      <link>https://community.hpe.com/t5/operating-system-linux/sed-limitation-100-commands-hp-ux-with-patch-phco-31246/m-p/4199696#M91462</link>
      <description>Hello,&lt;BR /&gt;Can you confirm that on HP-UX with patch PHCO_31246 there is still the 100 command limit with sed?&lt;BR /&gt;I realize gsed is a possible workaround, but I require confirmation of sed.&lt;BR /&gt;Thank you very much,&lt;BR /&gt;Trish</description>
      <pubDate>Fri, 16 May 2008 18:51:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/sed-limitation-100-commands-hp-ux-with-patch-phco-31246/m-p/4199696#M91462</guid>
      <dc:creator>Patricia McCormick</dc:creator>
      <dc:date>2008-05-16T18:51:17Z</dc:date>
    </item>
    <item>
      <title>Re: sed limitation 100 commands HP-UX with patch PHCO_31246</title>
      <link>https://community.hpe.com/t5/operating-system-linux/sed-limitation-100-commands-hp-ux-with-patch-phco-31246/m-p/4199697#M91463</link>
      <description>&lt;!--!*#--&gt;Did that patch update the "man" page?&lt;BR /&gt;&lt;BR /&gt;td176&amp;gt; man sed&lt;BR /&gt;[...]&lt;BR /&gt; DESCRIPTION&lt;BR /&gt;      sed copies the named text files (standard input default) to the&lt;BR /&gt;      standard output, edited according to a script containing up to 100&lt;BR /&gt;      commands.  [...]&lt;BR /&gt;&lt;BR /&gt;I'd tend to believe the doc, unless a test&lt;BR /&gt;showed that reality diverges therefrom.&lt;BR /&gt;&lt;BR /&gt;td176&amp;gt; uname -a&lt;BR /&gt;HP-UX td176 B.11.23 U ia64 1928826293 unlimited-user license&lt;BR /&gt;</description>
      <pubDate>Fri, 16 May 2008 19:46:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/sed-limitation-100-commands-hp-ux-with-patch-phco-31246/m-p/4199697#M91463</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2008-05-16T19:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: sed limitation 100 commands HP-UX with patch PHCO_31246</title>
      <link>https://community.hpe.com/t5/operating-system-linux/sed-limitation-100-commands-hp-ux-with-patch-phco-31246/m-p/4199698#M91464</link>
      <description>Hi Trish:&lt;BR /&gt;&lt;BR /&gt;The patch makes no mention of increasing the 100-ccommand limit and *it doesn't*.  You can test that this way:&lt;BR /&gt;&lt;BR /&gt;# perl -le 'print "s/a/b/g" for (1..99)' &amp;gt; /tmp/sedprog&lt;BR /&gt;&lt;BR /&gt;# echo "aaa" | -f /tmp/sedprog&lt;BR /&gt;bbb&lt;BR /&gt;&lt;BR /&gt;# perl -le 'print "s/a/b/g" for (1..100)' &amp;gt; /tmp/sedprog&lt;BR /&gt;sed: There are too many commands for the s/a/b/g function.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;</description>
      <pubDate>Fri, 16 May 2008 21:36:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/sed-limitation-100-commands-hp-ux-with-patch-phco-31246/m-p/4199698#M91464</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2008-05-16T21:36:48Z</dc:date>
    </item>
    <item>
      <title>Re: sed limitation 100 commands HP-UX with patch PHCO_31246</title>
      <link>https://community.hpe.com/t5/operating-system-linux/sed-limitation-100-commands-hp-ux-with-patch-phco-31246/m-p/4199699#M91465</link>
      <description>Hi (again) Trish:&lt;BR /&gt;&lt;BR /&gt;I should add that depending on what the 'sed' filtration does, you can pipe together two or more 100-command limited programs to enable you to exceed the 100-command barrier:&lt;BR /&gt;&lt;BR /&gt;# sed -f ./inputfile ./sedprog1 | sed -f ./sedprog2&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Fri, 16 May 2008 22:01:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/sed-limitation-100-commands-hp-ux-with-patch-phco-31246/m-p/4199699#M91465</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2008-05-16T22:01:07Z</dc:date>
    </item>
    <item>
      <title>Re: sed limitation 100 commands HP-UX with patch PHCO_31246</title>
      <link>https://community.hpe.com/t5/operating-system-linux/sed-limitation-100-commands-hp-ux-with-patch-phco-31246/m-p/4199700#M91466</link>
      <description>&amp;gt;Steven: Did that patch update the "man" page?&lt;BR /&gt;&lt;BR /&gt;That limitation is still documented on 11.31.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 17 May 2008 05:32:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/sed-limitation-100-commands-hp-ux-with-patch-phco-31246/m-p/4199700#M91466</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2008-05-17T05:32:27Z</dc:date>
    </item>
  </channel>
</rss>

