<?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: Strings from command output in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973548#M418447</link>
    <description>I have found a solution to this question</description>
    <pubDate>Thu, 13 Apr 2006 23:33:44 GMT</pubDate>
    <dc:creator>Igor Sovin</dc:creator>
    <dc:date>2006-04-13T23:33:44Z</dc:date>
    <item>
      <title>Strings from command output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973529#M418428</link>
      <description>Hi!&lt;BR /&gt;What is the way to get several strings from some hp-ux command and write them to file?&lt;BR /&gt;for example&lt;BR /&gt;#more filename&lt;BR /&gt;ab&lt;BR /&gt;bc&lt;BR /&gt;cd&lt;BR /&gt;ed&lt;BR /&gt;&lt;BR /&gt;I need to read "ab" and "ed" and write it to filename1.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Apr 2006 03:35:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973529#M418428</guid>
      <dc:creator>Igor Sovin</dc:creator>
      <dc:date>2006-04-13T03:35:34Z</dc:date>
    </item>
    <item>
      <title>Re: Strings from command output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973530#M418429</link>
      <description>Igor,&lt;BR /&gt;&lt;BR /&gt;Try this awk construct...it'll help if you could give a sample of the input that needs processing.&lt;BR /&gt;&lt;BR /&gt;# &lt;SOME_HPUX_COMMAND&gt; | awk '{print $1}'&lt;BR /&gt;&lt;BR /&gt;cheers!&lt;/SOME_HPUX_COMMAND&gt;</description>
      <pubDate>Thu, 13 Apr 2006 03:56:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973530#M418429</guid>
      <dc:creator>Sandman!</dc:creator>
      <dc:date>2006-04-13T03:56:31Z</dc:date>
    </item>
    <item>
      <title>Re: Strings from command output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973531#M418430</link>
      <description>Hi Igor,&lt;BR /&gt;&lt;BR /&gt;there are several ways, e.g. grep, assuming the file "filename" is in the current directory:&lt;BR /&gt;&lt;BR /&gt;# grep -E "^ab|^ed" ./filename &amp;gt;newfile&lt;BR /&gt;&lt;BR /&gt;which will match lines beginning with ab or ed&lt;BR /&gt;&lt;BR /&gt;If you want to  match the two strings anywhere in a line, then:&lt;BR /&gt;&lt;BR /&gt;# grep -E "ab|ed" ./filename &amp;gt;newfile&lt;BR /&gt;&lt;BR /&gt;But you will probably get many other suggestions!&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;John K.</description>
      <pubDate>Thu, 13 Apr 2006 04:14:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973531#M418430</guid>
      <dc:creator>john korterman</dc:creator>
      <dc:date>2006-04-13T04:14:12Z</dc:date>
    </item>
    <item>
      <title>Re: Strings from command output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973532#M418431</link>
      <description>Hi!&lt;BR /&gt;&lt;BR /&gt;thank you for advice, I've cheked it, but I need more complex output.&lt;BR /&gt;The command is the following &lt;BR /&gt;#omnimm -media_info BM2605L1 -detail&lt;BR /&gt;MediumID               : 0a01010b:412b055d:1f33:0001 &lt;BR /&gt;Pool name              : NW3-Pool &lt;BR /&gt;Library                : Ultrium &lt;BR /&gt;Medium Label           : [BM2605L1] NW3-Pool_4 &lt;BR /&gt;                : [Ultrium:     1] &lt;BR /&gt;Medium Owner           : lev &lt;BR /&gt;Used blocks            : 470891648 &lt;BR /&gt;Total blocks           : 470891648 &lt;BR /&gt;Number of writes       : 14 &lt;BR /&gt;Number of overwrites   : 15 &lt;BR /&gt;Number of errors       : 0 &lt;BR /&gt;Creation time          : Tue Aug 24 15:07:41 2004 &lt;BR /&gt;Time of last write     : Tue Apr 11 22:02:57 2006 &lt;BR /&gt;Time of last overwrite : Wed Apr  5 22:37:33 2006 &lt;BR /&gt;Time of last access    : Tue Apr 11 22:02:57 2006 &lt;BR /&gt;Medium type            : FULL &lt;BR /&gt;Write-protected        : No&lt;BR /&gt;&lt;BR /&gt;I need to get Pool name: Library: Medium Label: Location: into one string, so that every word will be the heading of the separate column. And the value of each parameter acoording to command outpu must be written to column below the heading.</description>
      <pubDate>Thu, 13 Apr 2006 04:15:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973532#M418431</guid>
      <dc:creator>Igor Sovin</dc:creator>
      <dc:date>2006-04-13T04:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: Strings from command output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973533#M418432</link>
      <description>Hi!&lt;BR /&gt;&lt;BR /&gt;thank you for advice, I've cheked it, but I need more complex output.&lt;BR /&gt;The command is the following &lt;BR /&gt;#omnimm -media_info BM2605L1 -detail&lt;BR /&gt;MediumID               : 0a01010b:412b055d:1f33:0001 &lt;BR /&gt;Pool name              : NW3-Pool &lt;BR /&gt;Library                : Ultrium &lt;BR /&gt;Medium Label           : [BM2605L1] NW3-Pool_4 &lt;BR /&gt;                : [Ultrium:     1] &lt;BR /&gt;Medium Owner           : lev &lt;BR /&gt;Used blocks            : 470891648 &lt;BR /&gt;Total blocks           : 470891648 &lt;BR /&gt;Number of writes       : 14 &lt;BR /&gt;Number of overwrites   : 15 &lt;BR /&gt;Number of errors       : 0 &lt;BR /&gt;Creation time          : Tue Aug 24 15:07:41 2004 &lt;BR /&gt;Time of last write     : Tue Apr 11 22:02:57 2006 &lt;BR /&gt;Time of last overwrite : Wed Apr  5 22:37:33 2006 &lt;BR /&gt;Time of last access    : Tue Apr 11 22:02:57 2006 &lt;BR /&gt;Medium type            : FULL &lt;BR /&gt;Write-protected        : No&lt;BR /&gt;&lt;BR /&gt;I need to get pframeters Pool name: Library: Medium Label: Location: into one string, so that every parameter will be the heading of the separate column. And the value of each parameter acoording to command output must be written to column below the heading.</description>
      <pubDate>Thu, 13 Apr 2006 04:16:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973533#M418432</guid>
      <dc:creator>Igor Sovin</dc:creator>
      <dc:date>2006-04-13T04:16:06Z</dc:date>
    </item>
    <item>
      <title>Re: Strings from command output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973534#M418433</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Try this&lt;BR /&gt;&lt;BR /&gt;$ &lt;COMMAND output=""&gt;|awk '($1 == "ab" || $1 == "ed"){print $1}' &amp;gt; file_name&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;-Santosh&lt;/COMMAND&gt;</description>
      <pubDate>Thu, 13 Apr 2006 04:28:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973534#M418433</guid>
      <dc:creator>SANTOSH S. MHASKAR</dc:creator>
      <dc:date>2006-04-13T04:28:37Z</dc:date>
    </item>
    <item>
      <title>Re: Strings from command output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973535#M418434</link>
      <description>Hi Igor,&lt;BR /&gt;&lt;BR /&gt;Based on the sample input you'ave provided...try this awk construct.&lt;BR /&gt;&lt;BR /&gt;# omnimm -media_info BM2605L1 -detail | awk -F: '&lt;BR /&gt;&amp;gt; /^Pool name/||/^Library/||/^Medium Label/{head=head" "$1;val=val" "$2}&lt;BR /&gt;&amp;gt; END{printf("%s\n%s\n",head,val)}'&lt;BR /&gt;&lt;BR /&gt;I don't see any record that starts with Location so I left it out of the awk pattern, however you can easily extend it.&lt;BR /&gt;&lt;BR /&gt;cheers!</description>
      <pubDate>Thu, 13 Apr 2006 04:42:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973535#M418434</guid>
      <dc:creator>Sandman!</dc:creator>
      <dc:date>2006-04-13T04:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: Strings from command output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973536#M418435</link>
      <description>Igor,&lt;BR /&gt;or as a cumbersome shell script:&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;omnimm -media_info BM2605L1 -detail &amp;gt; a.dat&lt;BR /&gt;grep -f a.grep a.dat &amp;gt; a.rep&lt;BR /&gt;while read record&lt;BR /&gt;do&lt;BR /&gt;heading=`echo $record | cut -d':' -f1`&lt;BR /&gt;data=`echo $record | cut -d':' -f2`&lt;BR /&gt;heado="${headi}\t$heading"&lt;BR /&gt;headi=$heado&lt;BR /&gt;datao="${datai}\t$data"&lt;BR /&gt;datai=$datao&lt;BR /&gt;done &amp;lt; a.rep&lt;BR /&gt;echo $headi&lt;BR /&gt;echo $datai&lt;BR /&gt;&lt;BR /&gt;where a.grep contains:&lt;BR /&gt;Pool name :&lt;BR /&gt;Library :&lt;BR /&gt;Medium Label :</description>
      <pubDate>Thu, 13 Apr 2006 04:50:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973536#M418435</guid>
      <dc:creator>Peter Godron</dc:creator>
      <dc:date>2006-04-13T04:50:01Z</dc:date>
    </item>
    <item>
      <title>Re: Strings from command output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973537#M418436</link>
      <description>Thanx Sandman!&lt;BR /&gt;It works perfect!&lt;BR /&gt;and the last question:&lt;BR /&gt;&lt;BR /&gt;What expression I must use to get only BM2605L1&lt;BR /&gt;from the string&lt;BR /&gt;Medium Label           : [BM2605L1] NW3-Pool_4&lt;BR /&gt;&lt;BR /&gt;without signs '[' and ']'  ?</description>
      <pubDate>Thu, 13 Apr 2006 05:08:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973537#M418436</guid>
      <dc:creator>Igor Sovin</dc:creator>
      <dc:date>2006-04-13T05:08:55Z</dc:date>
    </item>
    <item>
      <title>Re: Strings from command output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973538#M418437</link>
      <description>Hi Igor:&lt;BR /&gt;&lt;BR /&gt;This will produce a nicely formatted table:&lt;BR /&gt;&lt;BR /&gt;# omnimm -media_info BM2605L1 -detail | perl -nle 'printf "%-25s %s\n",$1,$2 if /(.+)\s+:\s+(.+)/'&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Apr 2006 05:10:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973538#M418437</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2006-04-13T05:10:34Z</dc:date>
    </item>
    <item>
      <title>Re: Strings from command output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973539#M418438</link>
      <description>James&lt;BR /&gt;I get the same result as the output of command omnimm without any awk expressions. The difference is that using your example I get the same outpur but without ':' sign.</description>
      <pubDate>Thu, 13 Apr 2006 05:16:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973539#M418438</guid>
      <dc:creator>Igor Sovin</dc:creator>
      <dc:date>2006-04-13T05:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: Strings from command output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973540#M418439</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;based on sandman:&lt;BR /&gt;# omnimm -media_info BM2605L1 -detail | awk -F: '&lt;BR /&gt;&amp;gt; /^Pool name/||/^Library/||/^Medium Label/{head=head" "$1;if ($2 ~ "]") add=substr($2,2,length($2)-2)&lt;BR /&gt;else add=$2&lt;BR /&gt;val=val" "add}&lt;BR /&gt;&amp;gt; END{printf("%s\n%s\n",head,val)}'&lt;BR /&gt;&lt;BR /&gt;mfG Peter</description>
      <pubDate>Thu, 13 Apr 2006 05:17:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973540#M418439</guid>
      <dc:creator>Peter Nikitka</dc:creator>
      <dc:date>2006-04-13T05:17:38Z</dc:date>
    </item>
    <item>
      <title>Re: Strings from command output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973541#M418440</link>
      <description>Hi again,&lt;BR /&gt;&lt;BR /&gt;you can cut your string like this:&lt;BR /&gt;&lt;BR /&gt;# LABEL="Medium Label : [BM2605L1] NW3-Pool_4"&lt;BR /&gt;# REMOVE_START=$(echo ${LABEL##Medium Label : \[})&lt;BR /&gt;# echo ${REMOVE_START%%\]*}&lt;BR /&gt;BM2605L1&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;John K.</description>
      <pubDate>Thu, 13 Apr 2006 05:20:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973541#M418440</guid>
      <dc:creator>john korterman</dc:creator>
      <dc:date>2006-04-13T05:20:13Z</dc:date>
    </item>
    <item>
      <title>Re: Strings from command output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973542#M418441</link>
      <description>john, it works &lt;BR /&gt;but how to get this result from omnimm output that I provided above?</description>
      <pubDate>Thu, 13 Apr 2006 05:29:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973542#M418441</guid>
      <dc:creator>Igor Sovin</dc:creator>
      <dc:date>2006-04-13T05:29:14Z</dc:date>
    </item>
    <item>
      <title>Re: Strings from command output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973543#M418442</link>
      <description>Or how to get only all BM**** from this output&lt;BR /&gt;&lt;BR /&gt;# omnimm -repository_barcode_scan Ultrium&lt;BR /&gt;[Normal] From: UMA@lev "Ultrium"  Time: 04/13/06 14:26:48&lt;BR /&gt;        STARTING Media Agent "Ultrium"&lt;BR /&gt;&lt;BR /&gt;[Normal] From: UMA@lev "Ultrium"  Time: 04/13/06 14:26:53&lt;BR /&gt;        COMPLETED Media Agent "Ultrium"&lt;BR /&gt;&lt;BR /&gt;[Normal] From: MSM@lev "Ultrium"  Time: 04/13/06 14:26:53&lt;BR /&gt;&lt;BR /&gt;Slot [side]                Medium type             Medium Label (ID)&lt;BR /&gt;===============================================================================&lt;BR /&gt;1                          Data Protector          [BM2605L1] NW3-Pool_4       &lt;BR /&gt;2                          Data Protector          [BM2609L1] DMProd-Pool_1    &lt;BR /&gt;3                          Data Protector          [BM2584L1] DMProd-Pool_3    &lt;BR /&gt;4                          Data Protector          [BM2592L1] PRS-Week_3       &lt;BR /&gt;5                          Data Protector          [BM2606L1] NW3-Pool_1       &lt;BR /&gt;6                          Data Protector          [BM2572L1] SRD-Week_2       &lt;BR /&gt;7                          Data Protector          [BM2573L1] DMTest-Pool_1    &lt;BR /&gt;8                          Data Protector          [BM2571L1] DMTest-Pool_2    &lt;BR /&gt;9                          Data Protector          [BM2574L1] NW3-Pool_2       &lt;BR /&gt;10                         Data Protector          [BM2570L1] NW3-Pool_3       &lt;BR /&gt;11                         Data Protector          [BM2595L1] NPU_6            &lt;BR /&gt;12                         Data Protector          [BM2616L1] NW2-Pool_4       &lt;BR /&gt;13                         Data Protector          [BM2617L1] NPU_1            &lt;BR /&gt;14                         Data Protector          [BM2618L1] Ignite_Pool_3    &lt;BR /&gt;15                         Data Protector          [BM2647L1] NW3-Pool_5       &lt;BR /&gt;16                         Data Protector          [BM2619L1] Ignite_Pool_2    &lt;BR /&gt;17                         Data Protector          [BM2625L1] MFS-Pool_7       &lt;BR /&gt;18                         Data Protector          [BM2599L1] MFS-Pool_6       &lt;BR /&gt;19                         Data Protector          [BM2627L1] NW2-Pool_2&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Apr 2006 05:33:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973543#M418442</guid>
      <dc:creator>Igor Sovin</dc:creator>
      <dc:date>2006-04-13T05:33:02Z</dc:date>
    </item>
    <item>
      <title>Re: Strings from command output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973544#M418443</link>
      <description>Hi again,&lt;BR /&gt;&lt;BR /&gt;assuming the file infile2 holds the BM***s, you can try this:&lt;BR /&gt;&lt;BR /&gt;# cut -d" " -f ,4 ./infile2| tr -d [\[\]]&lt;BR /&gt;&lt;BR /&gt;alternatively, you can read through the file one line at a time:&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;while read a b c d e&lt;BR /&gt;do&lt;BR /&gt;        REMOVE_START=${d#\[}&lt;BR /&gt;        echo ${REMOVE_START%\]}&lt;BR /&gt;done&amp;lt;$1&lt;BR /&gt;&lt;BR /&gt;run it like this:&lt;BR /&gt;# abovescript.sh infile2&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;John K.&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Apr 2006 06:11:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973544#M418443</guid>
      <dc:creator>john korterman</dc:creator>
      <dc:date>2006-04-13T06:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: Strings from command output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973545#M418444</link>
      <description>Hi Igor,&lt;BR /&gt;&lt;BR /&gt;you can use this:&lt;BR /&gt;awk '$4 ~ "[[]BM" {print substr($4,2,length($4)-4)}' filename&lt;BR /&gt;&lt;BR /&gt;mfG Peter</description>
      <pubDate>Thu, 13 Apr 2006 06:41:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973545#M418444</guid>
      <dc:creator>Peter Nikitka</dc:creator>
      <dc:date>2006-04-13T06:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: Strings from command output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973546#M418445</link>
      <description>correction: not 'lenght-4' but '-2':&lt;BR /&gt;&lt;BR /&gt;awk '$4 ~ "[[]BM" {print substr($4,2,length($4)-2)}' filename&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Apr 2006 06:43:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973546#M418445</guid>
      <dc:creator>Peter Nikitka</dc:creator>
      <dc:date>2006-04-13T06:43:46Z</dc:date>
    </item>
    <item>
      <title>Re: Strings from command output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973547#M418446</link>
      <description>Hi Igor:&lt;BR /&gt;&lt;BR /&gt;My apologies for my first post.  I read your requirements too quickly.  With regard to "...how to get only all BM**** from this output...":&lt;BR /&gt;&lt;BR /&gt;# perl -nle 'print $1 if /\[(BM.+)\]/' datafile&lt;BR /&gt;&lt;BR /&gt;(or):&lt;BR /&gt;&lt;BR /&gt;# &lt;COMMAND&gt; | perl -nle 'print $1 if /\[(BM.+)\]/'&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;/COMMAND&gt;</description>
      <pubDate>Thu, 13 Apr 2006 06:53:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973547#M418446</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2006-04-13T06:53:16Z</dc:date>
    </item>
    <item>
      <title>Re: Strings from command output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973548#M418447</link>
      <description>I have found a solution to this question</description>
      <pubDate>Thu, 13 Apr 2006 23:33:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strings-from-command-output/m-p/4973548#M418447</guid>
      <dc:creator>Igor Sovin</dc:creator>
      <dc:date>2006-04-13T23:33:44Z</dc:date>
    </item>
  </channel>
</rss>

