<?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 or awk ??? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/sed-or-awk/m-p/2898908#M820442</link>
    <description>You can thankpeople by assigning points.&lt;BR /&gt;&lt;BR /&gt;Enjoy, have FUN! H.Merijn</description>
    <pubDate>Fri, 07 Feb 2003 13:49:12 GMT</pubDate>
    <dc:creator>H.Merijn Brand (procura</dc:creator>
    <dc:date>2003-02-07T13:49:12Z</dc:date>
    <item>
      <title>sed or awk ???</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sed-or-awk/m-p/2898898#M820432</link>
      <description>&lt;BR /&gt;Is there a way within sed and/or awk, (or any other command for that matter) to print certain lines within a file ??&lt;BR /&gt;Say in myfile I want to list lines 20 through 23 of the file only ??&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Thu, 06 Feb 2003 20:39:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sed-or-awk/m-p/2898898#M820432</guid>
      <dc:creator>MikeL_4</dc:creator>
      <dc:date>2003-02-06T20:39:23Z</dc:date>
    </item>
    <item>
      <title>Re: sed or awk ???</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sed-or-awk/m-p/2898899#M820433</link>
      <description>See attached&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Thu, 06 Feb 2003 20:42:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sed-or-awk/m-p/2898899#M820433</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2003-02-06T20:42:09Z</dc:date>
    </item>
    <item>
      <title>Re: sed or awk ???</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sed-or-awk/m-p/2898900#M820434</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;# sed -n -e 20,23p filename&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 06 Feb 2003 20:52:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sed-or-awk/m-p/2898900#M820434</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2003-02-06T20:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: sed or awk ???</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sed-or-awk/m-p/2898901#M820435</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Here is one way to do it in Perl:&lt;BR /&gt;&lt;BR /&gt;perl -ne 'print unless (($.&amp;lt;20) or ($.&amp;gt;23));' filename&lt;BR /&gt;&lt;BR /&gt;JP&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 06 Feb 2003 21:06:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sed-or-awk/m-p/2898901#M820435</guid>
      <dc:creator>John Poff</dc:creator>
      <dc:date>2003-02-06T21:06:23Z</dc:date>
    </item>
    <item>
      <title>Re: sed or awk ???</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sed-or-awk/m-p/2898902#M820436</link>
      <description>Hi (again):&lt;BR /&gt;&lt;BR /&gt;...and if you like 'awk':&lt;BR /&gt;&lt;BR /&gt;# awk 'NR &amp;gt;=20 &amp;amp;&amp;amp; NR &amp;lt;= 23' filename&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 06 Feb 2003 21:12:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sed-or-awk/m-p/2898902#M820436</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2003-02-06T21:12:36Z</dc:date>
    </item>
    <item>
      <title>Re: sed or awk ???</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sed-or-awk/m-p/2898903#M820437</link>
      <description>how about:&lt;BR /&gt;awk '&lt;BR /&gt;NR &amp;gt; 19 {print;}&lt;BR /&gt;NR &amp;gt; 23 {exit;)&lt;BR /&gt;'</description>
      <pubDate>Thu, 06 Feb 2003 22:02:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sed-or-awk/m-p/2898903#M820437</guid>
      <dc:creator>curt larson_1</dc:creator>
      <dc:date>2003-02-06T22:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: sed or awk ???</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sed-or-awk/m-p/2898904#M820438</link>
      <description>In unix there is always more than one way to do any particular job.  Others have contributed sed and awk scripts.  Here's another: head -23 myfile|tail -3.  Try it.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Chris</description>
      <pubDate>Thu, 06 Feb 2003 22:32:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sed-or-awk/m-p/2898904#M820438</guid>
      <dc:creator>Chris Vail</dc:creator>
      <dc:date>2003-02-06T22:32:51Z</dc:date>
    </item>
    <item>
      <title>Re: sed or awk ???</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sed-or-awk/m-p/2898905#M820439</link>
      <description>John, you should know better by now :)&lt;BR /&gt;&lt;BR /&gt;# perl -ne '20..23 and print' file&lt;BR /&gt;&lt;BR /&gt;Enjoy, have FUN! H.Merijn</description>
      <pubDate>Fri, 07 Feb 2003 09:36:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sed-or-awk/m-p/2898905#M820439</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2003-02-07T09:36:45Z</dc:date>
    </item>
    <item>
      <title>Re: sed or awk ???</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sed-or-awk/m-p/2898906#M820440</link>
      <description>Hi,Pete!&lt;BR /&gt;I have taken your attachment - it is&lt;BR /&gt;cool&amp;amp;great little thing - Thanx! :)&lt;BR /&gt;But I try to connect to: &lt;A href="http://www.wollery.demon.co.uk" target="_blank"&gt;www.wollery.demon.co.uk&lt;/A&gt; &lt;BR /&gt;to see more like that - without success.&lt;BR /&gt;Any information?&lt;BR /&gt;Regards, Stan &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 07 Feb 2003 11:30:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sed-or-awk/m-p/2898906#M820440</guid>
      <dc:creator>Stanimir</dc:creator>
      <dc:date>2003-02-07T11:30:00Z</dc:date>
    </item>
    <item>
      <title>Re: sed or awk ???</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sed-or-awk/m-p/2898907#M820441</link>
      <description>Thanks all for your assistance..</description>
      <pubDate>Fri, 07 Feb 2003 13:46:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sed-or-awk/m-p/2898907#M820441</guid>
      <dc:creator>MikeL_4</dc:creator>
      <dc:date>2003-02-07T13:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: sed or awk ???</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sed-or-awk/m-p/2898908#M820442</link>
      <description>You can thankpeople by assigning points.&lt;BR /&gt;&lt;BR /&gt;Enjoy, have FUN! H.Merijn</description>
      <pubDate>Fri, 07 Feb 2003 13:49:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sed-or-awk/m-p/2898908#M820442</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2003-02-07T13:49:12Z</dc:date>
    </item>
    <item>
      <title>Re: sed or awk ???</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sed-or-awk/m-p/2898909#M820443</link>
      <description>how do you assign points ??</description>
      <pubDate>Fri, 07 Feb 2003 14:01:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sed-or-awk/m-p/2898909#M820443</guid>
      <dc:creator>MikeL_4</dc:creator>
      <dc:date>2003-02-07T14:01:52Z</dc:date>
    </item>
    <item>
      <title>Re: sed or awk ???</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sed-or-awk/m-p/2898910#M820444</link>
      <description>In the header of each post, you see a dropdown box. Click it, and choose the appropriate amount for each post. 10 = best answer, it solved my problem, 0 = thanks, but it didn't help at all.&lt;BR /&gt;&lt;BR /&gt;When youve done all, hit the (-&amp;gt; SUBMIT) button at the left bottom&lt;BR /&gt;&lt;BR /&gt;Enjoy, have FUN! H.Merijn</description>
      <pubDate>Fri, 07 Feb 2003 14:07:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sed-or-awk/m-p/2898910#M820444</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2003-02-07T14:07:26Z</dc:date>
    </item>
  </channel>
</rss>

