<?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 or something else in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865170#M277374</link>
    <description>Igor,&lt;BR /&gt;"The output of omnidb could be different than that I've posted, depending on number of sessions." - Can you please post a file with all the formats you want to analyse ?&lt;BR /&gt;&lt;BR /&gt;"I need to get two fields Session ID an Backup Specification simultaneosly, not only Session ID. Or if it is not possible, how to get Session ID that belongs to Backup Specification EP2?" - Can you please give an example of what you want as an output, given the input as requested above.&lt;BR /&gt;&lt;BR /&gt;For example my solution assumed no blank leading line in input and that you wanted the ouput on two lines.&lt;BR /&gt;</description>
    <pubDate>Tue, 19 Sep 2006 05:15:30 GMT</pubDate>
    <dc:creator>Peter Godron</dc:creator>
    <dc:date>2006-09-19T05:15:30Z</dc:date>
    <item>
      <title>awk or something else</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865162#M277366</link>
      <description>I need to get EP2 and 2006/09/19-3 from&lt;BR /&gt;omnidb output:&lt;BR /&gt;#omnidb -session -user root -last 3 -type backup -detail&lt;BR /&gt;&lt;BR /&gt;SessionID : 2006/09/19-3     &lt;BR /&gt;        Backup Specification: EP2     &lt;BR /&gt;        Session type        : Backup (full)     &lt;BR /&gt;        Started             : Tue Sep 19 05:00:00 2006     &lt;BR /&gt;        Finished            : Tue Sep 19 09:21:47 2006     &lt;BR /&gt;        Status              : Completed     &lt;BR /&gt;        Number of warnings  : 0     &lt;BR /&gt;        Number of errors    : 0     &lt;BR /&gt;        User                : root     &lt;BR /&gt;        Group               : sys     &lt;BR /&gt;        Host                : lev &lt;BR /&gt;&lt;BR /&gt;How can I do that using awk or some different way?</description>
      <pubDate>Tue, 19 Sep 2006 04:07:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865162#M277366</guid>
      <dc:creator>Igor Sovin</dc:creator>
      <dc:date>2006-09-19T04:07:35Z</dc:date>
    </item>
    <item>
      <title>Re: awk or something else</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865163#M277367</link>
      <description>Igor,&lt;BR /&gt;Using the output of your omnidb command:&lt;BR /&gt;head -2 | awk -F':' '{print $2}'</description>
      <pubDate>Tue, 19 Sep 2006 04:11:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865163#M277367</guid>
      <dc:creator>Peter Godron</dc:creator>
      <dc:date>2006-09-19T04:11:08Z</dc:date>
    </item>
    <item>
      <title>Re: awk or something else</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865164#M277368</link>
      <description>or&lt;BR /&gt;&lt;BR /&gt;# omnidb -session -user root -last 3 -type backup -detail | perl -ne'm/^(SessionID|Backup Specification)\b/&amp;amp;&amp;amp;s/.*?:\s*//&amp;amp;&amp;amp;print'&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
      <pubDate>Tue, 19 Sep 2006 04:21:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865164#M277368</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2006-09-19T04:21:11Z</dc:date>
    </item>
    <item>
      <title>Re: awk or something else</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865165#M277369</link>
      <description>Hi Peter!&lt;BR /&gt;&lt;BR /&gt;I need to get two fields Session ID an Backup Specification simultaneosly, not only Session ID.&lt;BR /&gt;Or if it is not possible, how to get Session ID  that belongs to Backup Specification EP2?&lt;BR /&gt;The output of omnidb could be different than that I've posted, depending on number of sessions.</description>
      <pubDate>Tue, 19 Sep 2006 04:43:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865165#M277369</guid>
      <dc:creator>Igor Sovin</dc:creator>
      <dc:date>2006-09-19T04:43:39Z</dc:date>
    </item>
    <item>
      <title>Re: awk or something else</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865166#M277370</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;you need pure awk only:&lt;BR /&gt;omnidb -session -user root -last 3 -type backup -detail |&lt;BR /&gt;awk '/^SessionID/ {print $NF}&lt;BR /&gt;/^ Backup Specification/ {print $NF;exit}'&lt;BR /&gt;&lt;BR /&gt;or in Peter G.'s solution:&lt;BR /&gt;... | awk -F: 'NR&amp;gt;3 {print $2}'&lt;BR /&gt;&lt;BR /&gt;mfG Peter</description>
      <pubDate>Tue, 19 Sep 2006 04:48:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865166#M277370</guid>
      <dc:creator>Peter Nikitka</dc:creator>
      <dc:date>2006-09-19T04:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: awk or something else</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865167#M277371</link>
      <description>Sorry,&lt;BR /&gt;&lt;BR /&gt;must use '&amp;lt;' and not '&amp;gt;':&lt;BR /&gt;&lt;BR /&gt;##&lt;BR /&gt;or in Peter G.'s solution:&lt;BR /&gt;... | awk -F: 'NR&amp;lt;3 {print $2}'&lt;BR /&gt;##&lt;BR /&gt;&lt;BR /&gt;mfG Peter</description>
      <pubDate>Tue, 19 Sep 2006 04:49:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865167#M277371</guid>
      <dc:creator>Peter Nikitka</dc:creator>
      <dc:date>2006-09-19T04:49:53Z</dc:date>
    </item>
    <item>
      <title>Re: awk or something else</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865168#M277372</link>
      <description>omnidb -session -user root -last 3 -type backup -detail | perl -ne'm/^(SessionID|Backup Specification)\b/&amp;amp;&amp;amp;s/.*?:\s*//&amp;amp;&amp;amp;print '&lt;BR /&gt;&lt;BR /&gt;doesn't work</description>
      <pubDate>Tue, 19 Sep 2006 04:51:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865168#M277372</guid>
      <dc:creator>Igor Sovin</dc:creator>
      <dc:date>2006-09-19T04:51:21Z</dc:date>
    </item>
    <item>
      <title>Re: awk or something else</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865169#M277373</link>
      <description>Actually there are several sessions.&lt;BR /&gt;The full output is:&lt;BR /&gt;&lt;BR /&gt;root@lev /opt/omni&amp;gt;omnidb -session -user root -last 3 -type backup -detail&lt;BR /&gt;&lt;BR /&gt;SessionID : 2006/09/16-2     &lt;BR /&gt;        Backup Specification: EP2     &lt;BR /&gt;        Session type        : Backup (full)     &lt;BR /&gt;        Started             : Sat Sep 16 05:00:01 2006     &lt;BR /&gt;        Finished            : Sat Sep 16 09:22:00 2006     &lt;BR /&gt;        Status              : Completed     &lt;BR /&gt;        Number of warnings  : 0     &lt;BR /&gt;        Number of errors    : 0     &lt;BR /&gt;        User                : root     &lt;BR /&gt;        Group               : sys     &lt;BR /&gt;        Host                : lev &lt;BR /&gt;&lt;BR /&gt;SessionID : 2006/09/16-16     &lt;BR /&gt;        Backup Specification: DMProd     &lt;BR /&gt;        Session type        : Backup (full)     &lt;BR /&gt;        Started             : Sat Sep 16 23:45:00 2006     &lt;BR /&gt;        Finished            : Sun Sep 17 02:23:52 2006     &lt;BR /&gt;        Status              : Completed     &lt;BR /&gt;        Number of warnings  : 1     &lt;BR /&gt;        Number of errors    : 0     &lt;BR /&gt;        User                : root     &lt;BR /&gt;        Group               : sys     &lt;BR /&gt;        Host                : lev &lt;BR /&gt;&lt;BR /&gt;SessionID : 2006/09/17-1     &lt;BR /&gt;        Backup Specification: ServiceDesk     &lt;BR /&gt;        Session type        : Backup (full)     &lt;BR /&gt;        Started             : Sun Sep 17 03:00:01 2006     &lt;BR /&gt;        Finished            : Sun Sep 17 04:40:24 2006     &lt;BR /&gt;        Status              : Completed     &lt;BR /&gt;        Number of warnings  : 0     &lt;BR /&gt;        Number of errors    : 0     &lt;BR /&gt;        User                : root     &lt;BR /&gt;        Group               : sys     &lt;BR /&gt;        Host                : lev &lt;BR /&gt;&lt;BR /&gt;SessionID : 2006/09/17-2     &lt;BR /&gt;        Backup Specification: EP2     &lt;BR /&gt;        Session type        : Backup (full)     &lt;BR /&gt;        Started             : Sun Sep 17 05:00:00 2006     &lt;BR /&gt;        Finished            : Sun Sep 17 09:21:42 2006     &lt;BR /&gt;        Status              : Completed     &lt;BR /&gt;        Number of warnings  : 0     &lt;BR /&gt;        Number of errors    : 0     &lt;BR /&gt;        User                : root     &lt;BR /&gt;        Group               : sys     &lt;BR /&gt;        Host                : lev &lt;BR /&gt;&lt;BR /&gt;SessionID : 2006/09/17-14     &lt;BR /&gt;        Backup Specification: DP Database     &lt;BR /&gt;        Session type        : Backup (full)     &lt;BR /&gt;        Started             : Sun Sep 17 20:00:01 2006     &lt;BR /&gt;        Finished            : Sun Sep 17 20:30:17 2006     &lt;BR /&gt;        Status              : Completed     &lt;BR /&gt;        Number of warnings  : 0     &lt;BR /&gt;        Number of errors    : 0     &lt;BR /&gt;        User                : root     &lt;BR /&gt;        Group               : sys     &lt;BR /&gt;        Host                : lev &lt;BR /&gt;&lt;BR /&gt;How to get the following?:&lt;BR /&gt;&lt;BR /&gt;SessionID : 2006/09/16-2     &lt;BR /&gt;        Backup Specification: EP2  &lt;BR /&gt;&lt;BR /&gt;SessionID : 2006/09/17-2     &lt;BR /&gt;        Backup Specification: EP2</description>
      <pubDate>Tue, 19 Sep 2006 05:09:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865169#M277373</guid>
      <dc:creator>Igor Sovin</dc:creator>
      <dc:date>2006-09-19T05:09:46Z</dc:date>
    </item>
    <item>
      <title>Re: awk or something else</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865170#M277374</link>
      <description>Igor,&lt;BR /&gt;"The output of omnidb could be different than that I've posted, depending on number of sessions." - Can you please post a file with all the formats you want to analyse ?&lt;BR /&gt;&lt;BR /&gt;"I need to get two fields Session ID an Backup Specification simultaneosly, not only Session ID. Or if it is not possible, how to get Session ID that belongs to Backup Specification EP2?" - Can you please give an example of what you want as an output, given the input as requested above.&lt;BR /&gt;&lt;BR /&gt;For example my solution assumed no blank leading line in input and that you wanted the ouput on two lines.&lt;BR /&gt;</description>
      <pubDate>Tue, 19 Sep 2006 05:15:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865170#M277374</guid>
      <dc:creator>Peter Godron</dc:creator>
      <dc:date>2006-09-19T05:15:30Z</dc:date>
    </item>
    <item>
      <title>Re: awk or something else</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865171#M277375</link>
      <description>The simpliest way:&lt;BR /&gt;&lt;BR /&gt;omnidb -session -user root -last 3 -type backup -detail | grep -e "^Backup Specification" -e "^SessionID"</description>
      <pubDate>Tue, 19 Sep 2006 05:21:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865171#M277375</guid>
      <dc:creator>Alfredo Garcia Martino</dc:creator>
      <dc:date>2006-09-19T05:21:30Z</dc:date>
    </item>
    <item>
      <title>Re: awk or something else</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865172#M277376</link>
      <description>Can you expand on "doesn't work"?&lt;BR /&gt;Does it give an error message?&lt;BR /&gt;&lt;BR /&gt;Taking your last paste, and using that as input:&lt;BR /&gt;&lt;BR /&gt;lt09:/home/merijn 102 &amp;gt; perl -ne'm/^(SessionID|Backup Specification)\b/&amp;amp;&amp;amp;s/.*?:\s*//&amp;amp;&amp;amp;print' omni.out&lt;BR /&gt;2006/09/16-2&lt;BR /&gt;EP2&lt;BR /&gt;2006/09/16-16&lt;BR /&gt;DMProd&lt;BR /&gt;2006/09/17-1&lt;BR /&gt;ServiceDesk&lt;BR /&gt;2006/09/17-2&lt;BR /&gt;EP2&lt;BR /&gt;2006/09/17-14&lt;BR /&gt;DP Database&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;looks perfectly fine to me.&lt;BR /&gt;What is the perl you use?&lt;BR /&gt;&lt;BR /&gt;# perl -v&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
      <pubDate>Tue, 19 Sep 2006 05:21:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865172#M277376</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2006-09-19T05:21:51Z</dc:date>
    </item>
    <item>
      <title>Re: awk or something else</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865173#M277377</link>
      <description>Using awk:&lt;BR /&gt;&lt;BR /&gt;omnidb -session -user root -last 3 -type backup -detail |&lt;BR /&gt;awk '/^SessionID/ {print $0}&lt;BR /&gt;/^Backup Specification/ {print $0;exit}'</description>
      <pubDate>Tue, 19 Sep 2006 05:27:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865173#M277377</guid>
      <dc:creator>Alfredo Garcia Martino</dc:creator>
      <dc:date>2006-09-19T05:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: awk or something else</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865174#M277378</link>
      <description>procura&lt;BR /&gt;&lt;BR /&gt;root@lev /Ignite_Bckp&amp;gt;perl -v&lt;BR /&gt;&lt;BR /&gt;This is perl, v5.8.0 built for IA64.ARCHREV_0-thread-multi&lt;BR /&gt;(with 1 registered patch, see perl -V for more detail)&lt;BR /&gt;&lt;BR /&gt;Copyright 1987-2002, Larry Wall&lt;BR /&gt;&lt;BR /&gt;Binary build 803 provided by ActiveState Corp. &lt;A href="http://www.ActiveState.com" target="_blank"&gt;http://www.ActiveState.com&lt;/A&gt;&lt;BR /&gt;Built 16:06:31 Nov 24 2002&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Perl may be copied only under the terms of either the Artistic License or the&lt;BR /&gt;GNU General Public License, which may be found in the Perl 5 source kit.&lt;BR /&gt;&lt;BR /&gt;Complete documentation for Perl, including FAQ lists, should be found on&lt;BR /&gt;this system using `man perl' or `perldoc perl'.  If you have access to the&lt;BR /&gt;Internet, point your browser at &lt;A href="http://www.perl.com/," target="_blank"&gt;http://www.perl.com/,&lt;/A&gt; the Perl Home Page.&lt;BR /&gt;&lt;BR /&gt;I dont understand how to use your construction.. Could you post the whole command?&lt;BR /&gt;</description>
      <pubDate>Tue, 19 Sep 2006 05:32:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865174#M277378</guid>
      <dc:creator>Igor Sovin</dc:creator>
      <dc:date>2006-09-19T05:32:28Z</dc:date>
    </item>
    <item>
      <title>Re: awk or something else</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865175#M277379</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;to get the output for multiple sessions, just leave the 'exit'; to get one-liner info additionally, use:&lt;BR /&gt;&lt;BR /&gt;omnidb -session -user root -last 3 -type backup -detail |&lt;BR /&gt;awk '/^SessionID/ {id=$NF}&lt;BR /&gt;/^ Backup Specification/ {print id,$NF}'&lt;BR /&gt;&lt;BR /&gt;mfG Peter</description>
      <pubDate>Tue, 19 Sep 2006 05:40:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865175#M277379</guid>
      <dc:creator>Peter Nikitka</dc:creator>
      <dc:date>2006-09-19T05:40:31Z</dc:date>
    </item>
    <item>
      <title>Re: awk or something else</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865176#M277380</link>
      <description>Peter Nikitka,&lt;BR /&gt;&lt;BR /&gt;I do not get any output using your last command</description>
      <pubDate>Tue, 19 Sep 2006 05:45:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865176#M277380</guid>
      <dc:creator>Igor Sovin</dc:creator>
      <dc:date>2006-09-19T05:45:46Z</dc:date>
    </item>
    <item>
      <title>Re: awk or something else</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865177#M277381</link>
      <description>Uh, that *is* the whole command, assuming omni.out was the collected output:&lt;BR /&gt;&lt;BR /&gt;root@lev /opt/omni&amp;gt;omnidb -session -user root -last 3 -type backup -detail &amp;gt;omni.out&lt;BR /&gt;root@lev /opt/omni&amp;gt;perl -ne'm/^(SessionID|Backup Specification)\b/&amp;amp;&amp;amp;s/.*?:\s*//&amp;amp;&amp;amp;print' omni.out&lt;BR /&gt;&lt;BR /&gt;or, without the file&lt;BR /&gt;&lt;BR /&gt;root@lev /opt/omni&amp;gt;omnidb -session -user root -last 3 -type backup -detail | perl -ne'm/^(SessionID|Backup Specification)\b/&amp;amp;&amp;amp;s/.*?:\s*//&amp;amp;&amp;amp;print' omni.out&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I've just tried perl5.8.0 on a HP-UX 10.20 box, and that also runs fine:&lt;BR /&gt;&lt;BR /&gt;d3:/u/usr/merijn 105 &amp;gt; perl5.8.0 -ne'm/^(SessionID|Backup Specification)\b/&amp;amp;&amp;amp;s/.*?:\s*//&amp;amp;&amp;amp;print' omni.out&lt;BR /&gt;2006/09/16-2&lt;BR /&gt;EP2&lt;BR /&gt;2006/09/16-16&lt;BR /&gt;DMProd&lt;BR /&gt;2006/09/17-1&lt;BR /&gt;ServiceDesk&lt;BR /&gt;2006/09/17-2&lt;BR /&gt;EP2&lt;BR /&gt;2006/09/17-14&lt;BR /&gt;DP Database&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
      <pubDate>Tue, 19 Sep 2006 05:46:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865177#M277381</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2006-09-19T05:46:47Z</dc:date>
    </item>
    <item>
      <title>Re: awk or something else</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865178#M277382</link>
      <description>Peter's solution has a blank space that I don't see in my output.&lt;BR /&gt;&lt;BR /&gt;This works for me (without blank space between ^ and Backup):&lt;BR /&gt;&lt;BR /&gt;omnidb -session -user root -last 3 -type backup -detail |&lt;BR /&gt;awk '/^SessionID/ {id=$NF}&lt;BR /&gt;/^Backup Specification/ {print id,$NF}'</description>
      <pubDate>Tue, 19 Sep 2006 05:51:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865178#M277382</guid>
      <dc:creator>Alfredo Garcia Martino</dc:creator>
      <dc:date>2006-09-19T05:51:51Z</dc:date>
    </item>
    <item>
      <title>Re: awk or something else</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865179#M277383</link>
      <description>procura&lt;BR /&gt;hmm .. dont know what's the problem &lt;BR /&gt;I get only SessionID fields:&lt;BR /&gt;&lt;BR /&gt;2006/09/16-2     &lt;BR /&gt;2006/09/16-16     &lt;BR /&gt;2006/09/17-1     &lt;BR /&gt;2006/09/17-2     &lt;BR /&gt;2006/09/17-14     &lt;BR /&gt;2006/09/17-17     &lt;BR /&gt;2006/09/18-2     &lt;BR /&gt;2006/09/18-19     &lt;BR /&gt;2006/09/19-1     &lt;BR /&gt;2006/09/19-3  &lt;BR /&gt;</description>
      <pubDate>Tue, 19 Sep 2006 05:54:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865179#M277383</guid>
      <dc:creator>Igor Sovin</dc:creator>
      <dc:date>2006-09-19T05:54:07Z</dc:date>
    </item>
    <item>
      <title>Re: awk or something else</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865180#M277384</link>
      <description>Which probably means that there is more whitespace than the forum shows.&lt;BR /&gt;Can you *attach* the output, instead of paste it?&lt;BR /&gt;&lt;BR /&gt;For the next time you paste data that is to be parsed, please tick the '[ ] Retain format (spacing)' checkbox under the input text box, so the spaces are preserved.&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
      <pubDate>Tue, 19 Sep 2006 06:21:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865180#M277384</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2006-09-19T06:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: awk or something else</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865181#M277385</link>
      <description>Here is the attachment&lt;BR /&gt;</description>
      <pubDate>Tue, 19 Sep 2006 06:26:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-or-something-else/m-p/3865181#M277385</guid>
      <dc:creator>Igor Sovin</dc:creator>
      <dc:date>2006-09-19T06:26:24Z</dc:date>
    </item>
  </channel>
</rss>

