<?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: awk script in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-script/m-p/2572743#M857728</link>
    <description>Here is a link to download gawk:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.connect.org.uk/hppd/hpux/Gnu/gawk-3.1.0/" target="_blank"&gt;http://hpux.connect.org.uk/hppd/hpux/Gnu/gawk-3.1.0/&lt;/A&gt;</description>
    <pubDate>Thu, 30 Aug 2001 19:21:51 GMT</pubDate>
    <dc:creator>Patrick Wallek</dc:creator>
    <dc:date>2001-08-30T19:21:51Z</dc:date>
    <item>
      <title>awk script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-script/m-p/2572738#M857723</link>
      <description>Hi,&lt;BR /&gt; I have a file and each line is greater than 3000 bytes. I have to search the word and count and print it. But the problem with awk I cannot do becuase of its 3000 bytes restriction.&lt;BR /&gt; Is someone have any alternative inputs.&lt;BR /&gt;Thanks&lt;BR /&gt;Zafar</description>
      <pubDate>Thu, 30 Aug 2001 12:38:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-script/m-p/2572738#M857723</guid>
      <dc:creator>Zafar A. Mohammed</dc:creator>
      <dc:date>2001-08-30T12:38:37Z</dc:date>
    </item>
    <item>
      <title>Re: awk script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-script/m-p/2572739#M857724</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;Your best bet is to download GNU's versions of awk - 'gawk'. It is available from any of the HP-UX Porting Centres and has dynamically allocated maximum record size that can be set from the command line.&lt;BR /&gt;&lt;BR /&gt;Clay</description>
      <pubDate>Thu, 30 Aug 2001 12:44:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-script/m-p/2572739#M857724</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2001-08-30T12:44:31Z</dc:date>
    </item>
    <item>
      <title>Re: awk script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-script/m-p/2572740#M857725</link>
      <description>If was thinking of gawk; but I am not sure about that. If you the link for gawk download, I'll appreciate it.</description>
      <pubDate>Thu, 30 Aug 2001 12:48:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-script/m-p/2572740#M857725</guid>
      <dc:creator>Zafar A. Mohammed</dc:creator>
      <dc:date>2001-08-30T12:48:25Z</dc:date>
    </item>
    <item>
      <title>Re: awk script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-script/m-p/2572741#M857726</link>
      <description>THis site shows a benchmark of quite a few programs, and you can download the source code.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.bagley.org/~doug/shootout/bench/wordfreq/" target="_blank"&gt;http://www.bagley.org/~doug/shootout/bench/wordfreq/&lt;/A&gt;</description>
      <pubDate>Thu, 30 Aug 2001 12:49:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-script/m-p/2572741#M857726</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2001-08-30T12:49:54Z</dc:date>
    </item>
    <item>
      <title>Re: awk script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-script/m-p/2572742#M857727</link>
      <description>Hello Zafar,&lt;BR /&gt;&lt;BR /&gt;well, you can still substitute something in those long&lt;BR /&gt;lines with a NEWLINE using something like "tr(1)" and&lt;BR /&gt;then pipe that to "awk(1)" to find and count it:&lt;BR /&gt;&lt;BR /&gt;tr "\040\t" "\n" YOUR-FILE-HERE | awk ...&lt;BR /&gt;&lt;BR /&gt;This example would split your file at every space and&lt;BR /&gt;tab into a new line, hence getting around the line length&lt;BR /&gt;restriction...&lt;BR /&gt;&lt;BR /&gt;Of course, you max add more "split-characters" into the&lt;BR /&gt;first parameter of "tr(1)"!&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;   Wodisch</description>
      <pubDate>Thu, 30 Aug 2001 18:34:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-script/m-p/2572742#M857727</guid>
      <dc:creator>Wodisch</dc:creator>
      <dc:date>2001-08-30T18:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: awk script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-script/m-p/2572743#M857728</link>
      <description>Here is a link to download gawk:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.connect.org.uk/hppd/hpux/Gnu/gawk-3.1.0/" target="_blank"&gt;http://hpux.connect.org.uk/hppd/hpux/Gnu/gawk-3.1.0/&lt;/A&gt;</description>
      <pubDate>Thu, 30 Aug 2001 19:21:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-script/m-p/2572743#M857728</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2001-08-30T19:21:51Z</dc:date>
    </item>
    <item>
      <title>Re: awk script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-script/m-p/2572744#M857729</link>
      <description>I may be missing the point of the question....&lt;BR /&gt;&lt;BR /&gt;Is all you want the word count? If so, will wc work?</description>
      <pubDate>Fri, 31 Aug 2001 18:02:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-script/m-p/2572744#M857729</guid>
      <dc:creator>R. Allan Hicks</dc:creator>
      <dc:date>2001-08-31T18:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: awk script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-script/m-p/2572745#M857730</link>
      <description>I think Zafar is looking for something that will find a word and count the number of times it shows up.</description>
      <pubDate>Fri, 31 Aug 2001 22:48:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-script/m-p/2572745#M857730</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2001-08-31T22:48:22Z</dc:date>
    </item>
  </channel>
</rss>

