<?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: Delete ?' pattern in a streamed file in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873881#M852302</link>
    <description>Merijn,&lt;BR /&gt; &lt;BR /&gt;thank you for reminding us of the effeciency of the tr translate command (or transliterate operator as the Perl folks name it) over the usage of pattern substitutions by regexps.&lt;BR /&gt;As your benchmarking vividly demonstrates one should always avoid the expense of regexps when there is no need for such a sharp knife.&lt;BR /&gt;Boy, almost 10 times as fast.</description>
    <pubDate>Mon, 06 Dec 2004 04:00:52 GMT</pubDate>
    <dc:creator>Ralph Grothe</dc:creator>
    <dc:date>2004-12-06T04:00:52Z</dc:date>
    <item>
      <title>Delete ?' pattern in a streamed file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873874#M852295</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;I am looking for a command to delete occurance of ?' pattern in a streamed file. sed doesn't work on streamed file and I am unable to get tr to work for a pattern, it deletes ALL occurance of ? and ' which I don't want. For example a test file with following data -&lt;BR /&gt;&lt;BR /&gt;This is a test?' file'&lt;BR /&gt;with'? some' test? data'&lt;BR /&gt;&lt;BR /&gt;should be translated as - &lt;BR /&gt;&lt;BR /&gt;This is a test file'&lt;BR /&gt;with'? some' test? data'&lt;BR /&gt;&lt;BR /&gt;I also need the resultant file to be streamed. Any help is appreciated.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;BR /&gt;...Manjeet&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 03 Dec 2004 15:29:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873874#M852295</guid>
      <dc:creator>Kellogg Unix Team</dc:creator>
      <dc:date>2004-12-03T15:29:29Z</dc:date>
    </item>
    <item>
      <title>Re: Delete ?' pattern in a streamed file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873875#M852296</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;it is not clear to me what you want.&lt;BR /&gt;There are still ? and ' after translation.&lt;BR /&gt;&lt;BR /&gt;greetings,&lt;BR /&gt;&lt;BR /&gt;Michael&lt;BR /&gt;</description>
      <pubDate>Fri, 03 Dec 2004 16:25:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873875#M852296</guid>
      <dc:creator>Michael Schulte zur Sur</dc:creator>
      <dc:date>2004-12-03T16:25:42Z</dc:date>
    </item>
    <item>
      <title>Re: Delete ?' pattern in a streamed file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873876#M852297</link>
      <description>This won't work?&lt;BR /&gt; &lt;BR /&gt;echo "abc?'efg" | sed -e "s/\?'//"&lt;BR /&gt; &lt;BR /&gt;-- Rod Hills</description>
      <pubDate>Fri, 03 Dec 2004 16:37:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873876#M852297</guid>
      <dc:creator>Rodney Hills</dc:creator>
      <dc:date>2004-12-03T16:37:32Z</dc:date>
    </item>
    <item>
      <title>Re: Delete ?' pattern in a streamed file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873877#M852298</link>
      <description>Michael,&lt;BR /&gt;&lt;BR /&gt;If you look closely at the output file, "?'" [? followed by ' - in that order] has been removed, other kind of occurances are not modified.&lt;BR /&gt;&lt;BR /&gt;Rodney,&lt;BR /&gt;&lt;BR /&gt;sed doesn't work on streamed files. I had tried that but didn't work.&lt;BR /&gt;&lt;BR /&gt;...Manjeet</description>
      <pubDate>Fri, 03 Dec 2004 16:59:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873877#M852298</guid>
      <dc:creator>Kellogg Unix Team</dc:creator>
      <dc:date>2004-12-03T16:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: Delete ?' pattern in a streamed file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873878#M852299</link>
      <description>&lt;BR /&gt;Manjeet, &lt;BR /&gt;     Please explain what you mean with streamed file. Is that different from data coming in trough a pipe? A 'binary' stream with no clear line deliniation?&lt;BR /&gt;&lt;BR /&gt;     Rodney's suggestion seems to work for me&lt;BR /&gt;&lt;BR /&gt;$ cat &amp;gt; x&lt;BR /&gt;This is a test?' file'&lt;BR /&gt;with'? some' test? data'&lt;BR /&gt;$ cat x | sed -e "s/\?'//"&lt;BR /&gt;This is a test file'&lt;BR /&gt;with'? some' test? data'&lt;BR /&gt;&lt;BR /&gt;Similar with perl:&lt;BR /&gt;&lt;BR /&gt;$ perl -pe "s/\?'//g" x&lt;BR /&gt;This is a test file'&lt;BR /&gt;with'? some' test? data'&lt;BR /&gt;&lt;BR /&gt;hth,&lt;BR /&gt;Hein.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 03 Dec 2004 22:20:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873878#M852299</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2004-12-03T22:20:11Z</dc:date>
    </item>
    <item>
      <title>Re: Delete ?' pattern in a streamed file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873879#M852300</link>
      <description>For every problem there is the right tool. In this case it proves to be the much underrated 'tr' util.&lt;BR /&gt;&lt;BR /&gt;# process | tr -d '?'&lt;BR /&gt;# tr -d '?' &amp;lt; file&lt;BR /&gt;&lt;BR /&gt;also supported in perl, and MUCH faster than s///&lt;BR /&gt;&lt;BR /&gt;# process | perl -pe'tr/?//d'&lt;BR /&gt;&lt;BR /&gt;lt09:/home/merijn 102 &amp;gt; perl -MBenchmark -e'$a="ab?cdef?gh" x 1000;timethese(-3,{s=&amp;gt;sub{($b=$a)=~s/\?//g},tr=&amp;gt;sub{($b=$a)=~tr/?//d}})'&lt;BR /&gt;Benchmark: running s, tr for at least 3 CPU seconds...&lt;BR /&gt;         s:  4 wallclock secs ( 3.14 usr +  0.00 sys =  3.14 CPU) @ 1224.84/s (n=3846)&lt;BR /&gt;        tr:  3 wallclock secs ( 3.13 usr +  0.00 sys =  3.13 CPU) @ 11271.57/s (n=35280)&lt;BR /&gt;lt09:/home/merijn 103 &amp;gt;&lt;BR /&gt;&lt;BR /&gt;lt09:/home/merijn 124 &amp;gt; set time&lt;BR /&gt;lt09:/home/merijn 125 &amp;gt; perl -le'$a="ab?cdef?gh" x 1000;print$a for 1..1000' &amp;gt; file&lt;BR /&gt;0.007u 0.056s 0:00.06 83.3%     0+0k 0+0io 0pf+0w&lt;BR /&gt;lt09:/home/merijn 126 &amp;gt; ll file&lt;BR /&gt;1562524 -rw-rw-rw-  1 merijn users 10001000 2004-12-04 11:27 file&lt;BR /&gt;0.000u 0.001s 0:00.00 0.0%      0+0k 0+0io 0pf+0w&lt;BR /&gt;lt09:/home/merijn 127 &amp;gt; sed 's/\?//g' file | wc -c&lt;BR /&gt;8001000&lt;BR /&gt;1.440u 0.026s 0:01.51 96.6%     0+0k 0+0io 0pf+0w&lt;BR /&gt;lt09:/home/merijn 128 &amp;gt; tr -d '?' &amp;lt; file | wc -c&lt;BR /&gt;8001000&lt;BR /&gt;0.034u 0.018s 0:00.05 80.0%     0+0k 0+0io 0pf+0w&lt;BR /&gt;lt09:/home/merijn 129 &amp;gt; perl -pe's/\?//g' file | wc -c&lt;BR /&gt;8001000&lt;BR /&gt;0.867u 0.022s 0:00.92 95.6%     0+0k 0+0io 0pf+0w&lt;BR /&gt;lt09:/home/merijn 130 &amp;gt; perl -pe'tr/?//d' file | wc -c&lt;BR /&gt;8001000&lt;BR /&gt;0.143u 0.027s 0:00.17 94.1%     0+0k 0+0io 0pf+0w&lt;BR /&gt;lt09:/home/merijn 131 &amp;gt;&lt;BR /&gt;&lt;BR /&gt;I bet that, seeing these timings, people are going to use 'tr' a lot more. Both as standalone util and in perl.&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
      <pubDate>Sat, 04 Dec 2004 05:29:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873879#M852300</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2004-12-04T05:29:34Z</dc:date>
    </item>
    <item>
      <title>Re: Delete ?' pattern in a streamed file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873880#M852301</link>
      <description>simply do as,&lt;BR /&gt;&lt;BR /&gt; muthu # cat &amp;gt; t.log&lt;BR /&gt;This is a test?' file'&lt;BR /&gt;with'? some' test? data'&lt;BR /&gt;&lt;BR /&gt; muthu # sed "s/\?'//"  t.log&lt;BR /&gt;This is a test file'&lt;BR /&gt;with'? some' test? data'&lt;BR /&gt;&lt;BR /&gt; muthu # sed "s/?'//"  t.log&lt;BR /&gt;This is a test file'&lt;BR /&gt;with'? some' test? data'&lt;BR /&gt;&lt;BR /&gt; muthu # perl -pe "s/\?'//"  t.log&lt;BR /&gt;This is a test file'&lt;BR /&gt;with'? some' test? data'&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;HTH.</description>
      <pubDate>Sun, 05 Dec 2004 23:21:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873880#M852301</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2004-12-05T23:21:17Z</dc:date>
    </item>
    <item>
      <title>Re: Delete ?' pattern in a streamed file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873881#M852302</link>
      <description>Merijn,&lt;BR /&gt; &lt;BR /&gt;thank you for reminding us of the effeciency of the tr translate command (or transliterate operator as the Perl folks name it) over the usage of pattern substitutions by regexps.&lt;BR /&gt;As your benchmarking vividly demonstrates one should always avoid the expense of regexps when there is no need for such a sharp knife.&lt;BR /&gt;Boy, almost 10 times as fast.</description>
      <pubDate>Mon, 06 Dec 2004 04:00:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873881#M852302</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2004-12-06T04:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: Delete ?' pattern in a streamed file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873882#M852303</link>
      <description>Merijn,&lt;BR /&gt;tr does not work because Manjeet wants to delete ?'&lt;BR /&gt;&lt;BR /&gt;Muthukumar,&lt;BR /&gt;as Majeet already stated sed does not work because he has not text file.&lt;BR /&gt;&lt;BR /&gt;greetings,&lt;BR /&gt;&lt;BR /&gt;Michael&lt;BR /&gt;</description>
      <pubDate>Mon, 06 Dec 2004 07:36:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873882#M852303</guid>
      <dc:creator>Michael Schulte zur Sur</dc:creator>
      <dc:date>2004-12-06T07:36:01Z</dc:date>
    </item>
    <item>
      <title>Re: Delete ?' pattern in a streamed file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873883#M852304</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I hope the follwing c programme does what you need. create pattdel.c compile and use&lt;BR /&gt;cat streamfile | ./pattfile&lt;BR /&gt;&lt;BR /&gt;greetings,&lt;BR /&gt;&lt;BR /&gt;Michael&lt;BR /&gt;&lt;BR /&gt;#include &lt;STDIO.H&gt;&lt;BR /&gt;main()&lt;BR /&gt;{&lt;BR /&gt;  char c1,c2;&lt;BR /&gt;  while ((c1=getchar())!=EOF)&lt;BR /&gt;  {&lt;BR /&gt;    if (c1!='?')&lt;BR /&gt;      printf("%c",c1);&lt;BR /&gt;    else {&lt;BR /&gt;      c2=getchar();&lt;BR /&gt;      if (c2!=EOF &amp;amp;&amp;amp; c2!=0x27)&lt;BR /&gt;         printf("%c%c",c1,c2);&lt;BR /&gt;    }&lt;BR /&gt;  }&lt;BR /&gt;}&lt;BR /&gt;&lt;/STDIO.H&gt;</description>
      <pubDate>Mon, 06 Dec 2004 07:49:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873883#M852304</guid>
      <dc:creator>Michael Schulte zur Sur</dc:creator>
      <dc:date>2004-12-06T07:49:22Z</dc:date>
    </item>
    <item>
      <title>Re: Delete ?' pattern in a streamed file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873884#M852305</link>
      <description>Of course does tr delete characters from sets.&lt;BR /&gt;Here an excerpt from tr manpage&lt;BR /&gt;  &lt;BR /&gt;&lt;BR /&gt;           -d             Deletes all occurrences of input characters or&lt;BR /&gt;                          collating elements found in the array specified in&lt;BR /&gt;                          string1.&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;The same effect has the trailing d modifier in Merijn's Perl script</description>
      <pubDate>Mon, 06 Dec 2004 08:05:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873884#M852305</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2004-12-06T08:05:07Z</dc:date>
    </item>
    <item>
      <title>Re: Delete ?' pattern in a streamed file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873885#M852306</link>
      <description>Sorry, I haven't read carefully enough.&lt;BR /&gt;It's actually the string sequence "?'" he wants to get rid of.&lt;BR /&gt;Then you're right.</description>
      <pubDate>Mon, 06 Dec 2004 08:07:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873885#M852306</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2004-12-06T08:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: Delete ?' pattern in a streamed file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873886#M852307</link>
      <description>Ralph,&lt;BR /&gt;&lt;BR /&gt;tr -d "?'" will delete all ? and all '. Manjeet do not want to suppress ? nor ' nor '?. Just ?'.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Fred&lt;BR /&gt;</description>
      <pubDate>Mon, 06 Dec 2004 08:08:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873886#M852307</guid>
      <dc:creator>Fred Ruffet</dc:creator>
      <dc:date>2004-12-06T08:08:08Z</dc:date>
    </item>
    <item>
      <title>Re: Delete ?' pattern in a streamed file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873887#M852308</link>
      <description>Fred,&lt;BR /&gt; &lt;BR /&gt;I understood by now.&lt;BR /&gt;That's why I apologized above.&lt;BR /&gt;Albeit in a different case when you need to translate whole character sets tr is the preffered choice for efficiency.</description>
      <pubDate>Mon, 06 Dec 2004 09:08:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873887#M852308</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2004-12-06T09:08:35Z</dc:date>
    </item>
    <item>
      <title>Re: Delete ?' pattern in a streamed file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873888#M852309</link>
      <description>Sorry Ralph, didn't saw your post :)&lt;BR /&gt;&lt;BR /&gt;Fred</description>
      <pubDate>Mon, 06 Dec 2004 09:22:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873888#M852309</guid>
      <dc:creator>Fred Ruffet</dc:creator>
      <dc:date>2004-12-06T09:22:00Z</dc:date>
    </item>
    <item>
      <title>Re: Delete ?' pattern in a streamed file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873889#M852310</link>
      <description>Hi, I am back ! :-) I am done with little firefighting.&lt;BR /&gt;&lt;BR /&gt;First of all, thanks to all for participating. This is truly one of the best forums I have seen. &lt;BR /&gt;&lt;BR /&gt;I am sorry if I have confused some of you with "streamed" file. Streamed file is a text file but is stripped off CR/LFs (upto the last line). I have attached a file, foo.streamed (streamed file) with this message. If you do a line count on it, following is returned -&lt;BR /&gt;&lt;BR /&gt;# wc -l foo*&lt;BR /&gt;0 foo.streamed&lt;BR /&gt;&lt;BR /&gt;If you run sed commands on a streamed file, it simply won't run as end-of-line is never detected. And I have not found a way for tr to remove a " pattern of ?' ", as some of you have already noticed.&lt;BR /&gt;&lt;BR /&gt;Having said that, I'm happy to see perl happily doing what I want! Now that the example file is there, I would be like to know any alternate solution which I can do without perl. No, don't get me wrong, I am not against perl, its just that I would like to avoid introducing an application if I can do the same with unix commands.&lt;BR /&gt;&lt;BR /&gt;Thanks!&lt;BR /&gt;...Manjeet&lt;BR /&gt;</description>
      <pubDate>Mon, 06 Dec 2004 14:50:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873889#M852310</guid>
      <dc:creator>Kellogg Unix Team</dc:creator>
      <dc:date>2004-12-06T14:50:16Z</dc:date>
    </item>
    <item>
      <title>Re: Delete ?' pattern in a streamed file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873890#M852311</link>
      <description>Well, what about doing something like this :&lt;BR /&gt;(cat foo.streamed ; echo) | sed "s/?'//g" | tr -d "\n"&lt;BR /&gt;(everybody's happy : both sed and tr :)&lt;BR /&gt;&lt;BR /&gt;you add a \n, then parse, then remove \n.&lt;BR /&gt;&lt;BR /&gt;Tested. Worked.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Fred&lt;BR /&gt;</description>
      <pubDate>Mon, 06 Dec 2004 16:59:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873890#M852311</guid>
      <dc:creator>Fred Ruffet</dc:creator>
      <dc:date>2004-12-06T16:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: Delete ?' pattern in a streamed file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873891#M852312</link>
      <description>Avoiding Perl might have made sense as recently as 6 or 7 years ago but nowadays Perl is installed as "standard equipment" on virtually every UNIX platform and in the worst case is readily available for easy install. It's really your least evil weapon in this case.&lt;BR /&gt;&lt;BR /&gt;If you try to do this with other "standard" UNIX commands, you stand a very good chance of hitting arbitrary buffer limits that vary from platform to platform and release to release. You could easily find that sed readily handles your file on platform A and explodes on platform B. All of the traditional text processing commands (awk, sed, ...) really assume line-oriented text files but Perl allows you the freedom to process binary input exactly according to your instructions as well as line-oriented text. As a bonus, well-written Perl script will run on Windows platforms as well --- without change.&lt;BR /&gt;</description>
      <pubDate>Mon, 06 Dec 2004 17:10:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873891#M852312</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2004-12-06T17:10:30Z</dc:date>
    </item>
    <item>
      <title>Re: Delete ?' pattern in a streamed file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873892#M852313</link>
      <description>Fred,&lt;BR /&gt;&lt;BR /&gt;Thanks for the solution; nice way to achieve the results! :)&lt;BR /&gt;&lt;BR /&gt;Clay,&lt;BR /&gt;&lt;BR /&gt;I see your point. In fact the files will indeed be very large EDI files and it will be catastrophic to lose part of the file if, for buffer limitation, command fails to execute. I will run the tests &amp;amp; probably use perl then! :)&lt;BR /&gt;&lt;BR /&gt;You all are very helpful, my thanks to all of you.&lt;BR /&gt;&lt;BR /&gt;...Manjeet</description>
      <pubDate>Mon, 06 Dec 2004 18:15:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873892#M852313</guid>
      <dc:creator>Kellogg Unix Team</dc:creator>
      <dc:date>2004-12-06T18:15:18Z</dc:date>
    </item>
    <item>
      <title>Re: Delete ?' pattern in a streamed file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873893#M852314</link>
      <description>Closing</description>
      <pubDate>Wed, 22 Dec 2004 15:57:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/delete-pattern-in-a-streamed-file/m-p/4873893#M852314</guid>
      <dc:creator>Kellogg Unix Team</dc:creator>
      <dc:date>2004-12-22T15:57:50Z</dc:date>
    </item>
  </channel>
</rss>

