<?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: Search for a particular string using SED in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403761#M201357</link>
    <description>HI Raja,&lt;BR /&gt;Is this what u r looking for:bash-2.05b&lt;BR /&gt;&lt;BR /&gt;# cat abc&lt;BR /&gt;CMD: /opt/omni/sbin/omnitrig&lt;BR /&gt;&amp;gt; root 2571 c Thu Jun 3 12:15:00 MDT 2004&lt;BR /&gt;&amp;gt; CMD: /opt/osit/xxxx/sysdowntime/bin/start.sh &amp;gt;/dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;&amp;gt; root 2572 c Thu Jun 3 12:15:01 MDT 2004&lt;BR /&gt;&amp;lt; root 2572 c Thu Jun 3 12:15:01 MDT 2004&lt;BR /&gt;&lt;BR /&gt;# cat abc | egrep "CMD|root"&lt;BR /&gt;CMD: /opt/omni/sbin/omnitrig&lt;BR /&gt;&amp;gt; root 2571 c Thu Jun 3 12:15:00 MDT 2004&lt;BR /&gt;&amp;gt; CMD: /opt/osit/xxxx/sysdowntime/bin/start.sh &amp;gt;/dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;&amp;gt; root 2572 c Thu Jun 3 12:15:01 MDT 2004&lt;BR /&gt;&amp;lt; root 2572 c Thu Jun 3 12:15:01 MDT 2004&lt;BR /&gt;&lt;BR /&gt;#&lt;BR /&gt;&lt;BR /&gt;Hope that helps.&lt;BR /&gt;Regards,</description>
    <pubDate>Wed, 20 Oct 2004 11:37:31 GMT</pubDate>
    <dc:creator>Bharat Katkar</dc:creator>
    <dc:date>2004-10-20T11:37:31Z</dc:date>
    <item>
      <title>Search for a particular string using SED</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403753#M201349</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;IS there a way out to search for strings in a file using sed.&lt;BR /&gt;&lt;BR /&gt;Thanks in adv,&lt;BR /&gt;Raja.B</description>
      <pubDate>Tue, 19 Oct 2004 19:08:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403753#M201349</guid>
      <dc:creator>Raja Balasubramanian</dc:creator>
      <dc:date>2004-10-19T19:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: Search for a particular string using SED</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403754#M201350</link>
      <description>Is there any reason why you dont want to do string search using grep ?&lt;BR /&gt;&lt;BR /&gt;sed -n '/string/p' inputfile&lt;BR /&gt;&lt;BR /&gt;The above sed will only display the lines that contains "string" (like grep)</description>
      <pubDate>Tue, 19 Oct 2004 19:17:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403754#M201350</guid>
      <dc:creator>Sundar_7</dc:creator>
      <dc:date>2004-10-19T19:17:22Z</dc:date>
    </item>
    <item>
      <title>Re: Search for a particular string using SED</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403755#M201351</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I am actually trying to capture the time / date a particular script has executed via cron.teh log file for cron (/var/adm/cron/log) is a very huge file and grep is slow and also the script has a absolute path to it &lt;BR /&gt;&lt;BR /&gt;eg: /opt/lbin/..../scriptname and grep "/opt/lbin/..../scriptname" is not giving me any output.I even tried the grep -x option also.&lt;BR /&gt;&lt;BR /&gt;Hope this answaer your question.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Raja.B</description>
      <pubDate>Tue, 19 Oct 2004 19:21:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403755#M201351</guid>
      <dc:creator>Raja Balasubramanian</dc:creator>
      <dc:date>2004-10-19T19:21:33Z</dc:date>
    </item>
    <item>
      <title>Re: Search for a particular string using SED</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403756#M201352</link>
      <description>Have you visually verified that that path actually exist in the log file as you specified? &lt;BR /&gt; &lt;BR /&gt;Could you show a snippet of the log file that shows that path and the precise grep command you tried to use...&lt;BR /&gt; &lt;BR /&gt;-- Rod Hills</description>
      <pubDate>Tue, 19 Oct 2004 20:12:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403756#M201352</guid>
      <dc:creator>Rodney Hills</dc:creator>
      <dc:date>2004-10-19T20:12:05Z</dc:date>
    </item>
    <item>
      <title>Re: Search for a particular string using SED</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403757#M201353</link>
      <description>Here's the sed one liners page - might be usefullfor you:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.student.northpark.edu/pemente/sed/sed1line.txt" target="_blank"&gt;http://www.student.northpark.edu/pemente/sed/sed1line.txt&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Tue, 19 Oct 2004 21:33:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403757#M201353</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2004-10-19T21:33:48Z</dc:date>
    </item>
    <item>
      <title>Re: Search for a particular string using SED</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403758#M201354</link>
      <description>&lt;BR /&gt;It is hard to believe that sed woudl be any faster than grep. Also, do you not want the line before the cmd to get the date? In that case an 'awk' or 'perl' solution is probably called for. Do a 'search'-'more options' here for several examples.&lt;BR /&gt;If you still can not figure it out, then please re-reply with a text file containing the excact string you look for and a paragraph or two from the cron log that contain an examle that should match.&lt;BR /&gt;&lt;BR /&gt;hth,&lt;BR /&gt;Hein.&lt;BR /&gt;</description>
      <pubDate>Tue, 19 Oct 2004 21:49:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403758#M201354</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2004-10-19T21:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: Search for a particular string using SED</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403759#M201355</link>
      <description>eg: /opt/lbin/..../scriptname and grep "/opt/lbin/..../scriptname" is not giving me any output.I even tried the grep -x option also. says,&lt;BR /&gt;&lt;BR /&gt; Are you trying with grep &lt;PATTERN&gt; filename there.?&lt;BR /&gt;&lt;BR /&gt; Can you post some lines of log files and what do you want to get it from there?&lt;BR /&gt; &lt;BR /&gt; Grep will do the requirement, but performance will be differed with sed / perl / awk there.&lt;BR /&gt;&lt;BR /&gt; Do post your log file and informations to be extracted from that file.&lt;BR /&gt;&lt;BR /&gt;HTH.&lt;/PATTERN&gt;</description>
      <pubDate>Wed, 20 Oct 2004 00:36:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403759#M201355</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2004-10-20T00:36:45Z</dc:date>
    </item>
    <item>
      <title>Re: Search for a particular string using SED</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403760#M201356</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;SAMPLE LOG FILE&lt;BR /&gt;&lt;BR /&gt;CMD: /opt/omni/sbin/omnitrig&lt;BR /&gt;&amp;gt;  root 2571 c Thu Jun  3 12:15:00 MDT 2004&lt;BR /&gt;&amp;gt;  CMD: /opt/osit/xxxx/sysdowntime/bin/start.sh &amp;gt;/dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;&amp;gt;  root 2572 c Thu Jun  3 12:15:01 MDT 2004&lt;BR /&gt;&amp;lt;  root 2572 c Thu Jun  3 12:15:01 MDT 2004&lt;BR /&gt;&lt;BR /&gt;I need to grep both the line starting with CMD: and the next line too.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Raja.B</description>
      <pubDate>Wed, 20 Oct 2004 11:29:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403760#M201356</guid>
      <dc:creator>Raja Balasubramanian</dc:creator>
      <dc:date>2004-10-20T11:29:51Z</dc:date>
    </item>
    <item>
      <title>Re: Search for a particular string using SED</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403761#M201357</link>
      <description>HI Raja,&lt;BR /&gt;Is this what u r looking for:bash-2.05b&lt;BR /&gt;&lt;BR /&gt;# cat abc&lt;BR /&gt;CMD: /opt/omni/sbin/omnitrig&lt;BR /&gt;&amp;gt; root 2571 c Thu Jun 3 12:15:00 MDT 2004&lt;BR /&gt;&amp;gt; CMD: /opt/osit/xxxx/sysdowntime/bin/start.sh &amp;gt;/dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;&amp;gt; root 2572 c Thu Jun 3 12:15:01 MDT 2004&lt;BR /&gt;&amp;lt; root 2572 c Thu Jun 3 12:15:01 MDT 2004&lt;BR /&gt;&lt;BR /&gt;# cat abc | egrep "CMD|root"&lt;BR /&gt;CMD: /opt/omni/sbin/omnitrig&lt;BR /&gt;&amp;gt; root 2571 c Thu Jun 3 12:15:00 MDT 2004&lt;BR /&gt;&amp;gt; CMD: /opt/osit/xxxx/sysdowntime/bin/start.sh &amp;gt;/dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;&amp;gt; root 2572 c Thu Jun 3 12:15:01 MDT 2004&lt;BR /&gt;&amp;lt; root 2572 c Thu Jun 3 12:15:01 MDT 2004&lt;BR /&gt;&lt;BR /&gt;#&lt;BR /&gt;&lt;BR /&gt;Hope that helps.&lt;BR /&gt;Regards,</description>
      <pubDate>Wed, 20 Oct 2004 11:37:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403761#M201357</guid>
      <dc:creator>Bharat Katkar</dc:creator>
      <dc:date>2004-10-20T11:37:31Z</dc:date>
    </item>
    <item>
      <title>Re: Search for a particular string using SED</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403762#M201358</link>
      <description>Raja,&lt;BR /&gt;&lt;BR /&gt;  You can try something like this.&lt;BR /&gt;&lt;BR /&gt;  PID=2571&lt;BR /&gt;  awk -v CID=$PID '$3==CID &amp;amp;&amp;amp; $1=="&amp;gt;" {print prevline;} {prevline=$0} $3==CID {print}' /var/adm/cron/log&lt;BR /&gt;&lt;BR /&gt;  The above awk will only print the command that forked the process with PID 2571.&lt;BR /&gt;&lt;BR /&gt;- Sundar.&lt;BR /&gt;</description>
      <pubDate>Wed, 20 Oct 2004 11:43:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403762#M201358</guid>
      <dc:creator>Sundar_7</dc:creator>
      <dc:date>2004-10-20T11:43:22Z</dc:date>
    </item>
    <item>
      <title>Re: Search for a particular string using SED</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403763#M201359</link>
      <description>To get CMD: line and next line from the log file then,&lt;BR /&gt;&lt;BR /&gt;# cat &amp;gt; testfile&lt;BR /&gt;CMD: /opt/omni/sbin/omnitrig&lt;BR /&gt;&amp;gt; root 2571 c Thu Jun 3 12:15:00 MDT 2004&lt;BR /&gt;&amp;gt; CMD: /opt/osit/xxxx/sysdowntime/bin/start.sh &amp;gt;/dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;&amp;gt; root 2572 c Thu Jun 3 12:15:01 MDT 2004&lt;BR /&gt;&amp;lt; root 2572 c Thu Jun 3 12:15:01 MDT 2004&lt;BR /&gt;&lt;BR /&gt;# awk '/CMD:/ { print $0; getline; print $0 }' testfile&lt;BR /&gt;CMD: /opt/omni/sbin/omnitrig&lt;BR /&gt;&amp;gt; root 2571 c Thu Jun 3 12:15:00 MDT 2004&lt;BR /&gt;&amp;gt; CMD: /opt/osit/xxxx/sysdowntime/bin/start.sh &amp;gt;/dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;&amp;gt; root 2572 c Thu Jun 3 12:15:01 MDT 2004&lt;BR /&gt;&lt;BR /&gt;If you want to get appropriate then post your requirement more.&lt;BR /&gt;&lt;BR /&gt;HTH.&lt;BR /&gt;</description>
      <pubDate>Wed, 20 Oct 2004 12:17:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403763#M201359</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2004-10-20T12:17:24Z</dc:date>
    </item>
    <item>
      <title>Re: Search for a particular string using SED</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403764#M201360</link>
      <description>Hi Bharat,&lt;BR /&gt;&lt;BR /&gt;Thans for the command , but &lt;BR /&gt;cat filename | egrep "CMD:root" is giving me all the lines in the file that contain the string CMD and root.I am actually looking for some specifiic lines from the file .As the file is a cronlog , a lot of other scripts are scheduled via cron .I need to get the output of :&lt;BR /&gt;CMD : &lt;PARTICULAR script=""&gt;&lt;/PARTICULAR&gt;root: &lt;TIME when="" it="" got="" triggered=""&gt;&lt;/TIME&gt;&lt;BR /&gt;This is basically to find out when all that particular script has got triggered via cron from the cron log.&lt;BR /&gt;&lt;BR /&gt;Hope I have not confused you :-)&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Raja.B&lt;BR /&gt;</description>
      <pubDate>Wed, 20 Oct 2004 16:25:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403764#M201360</guid>
      <dc:creator>Raja Balasubramanian</dc:creator>
      <dc:date>2004-10-20T16:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: Search for a particular string using SED</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403765#M201361</link>
      <description>Hi Raja,&lt;BR /&gt;&lt;BR /&gt;Try Muthukumar's solution.&lt;BR /&gt;&lt;BR /&gt;awk '/CMD: \/opt\/osit\/xxxx\/sysdowntime\/bin\/start.sh/ {print $0;getline;print $0}' /var/adm/cron/log&lt;BR /&gt;&lt;BR /&gt;Note that all /s are to be escape(\)d.&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Wed, 20 Oct 2004 17:23:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403765#M201361</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2004-10-20T17:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: Search for a particular string using SED</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403766#M201362</link>
      <description>Hi there,&lt;BR /&gt;How about this one.&lt;BR /&gt;&lt;BR /&gt;# cat abc | egrep "CMD|root" | grep -v "^&amp;lt;"&lt;BR /&gt;&lt;BR /&gt;I know it's funny but hope that should work. :))&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;</description>
      <pubDate>Thu, 21 Oct 2004 04:22:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403766#M201362</guid>
      <dc:creator>Bharat Katkar</dc:creator>
      <dc:date>2004-10-21T04:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: Search for a particular string using SED</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403767#M201363</link>
      <description>Don't try to use as,&lt;BR /&gt;&lt;BR /&gt;/CMD: \/opt\/osit\/xxxx\/sysdowntime\/bin\/start.sh/ &lt;BR /&gt;&lt;BR /&gt;It will need to check full pattern there.&lt;BR /&gt;&lt;BR /&gt;If you want to get CMD: and it's next line then try as,&lt;BR /&gt;&lt;BR /&gt;awk '/CMD:/ { print $0; getline; print $0 }' &lt;LOGFILE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;You can use another way as,&lt;BR /&gt;&lt;BR /&gt;sed '/CMD:/!d;N' testfile&lt;BR /&gt;&lt;BR /&gt;It will give the same requirement again using sed.&lt;BR /&gt;&lt;BR /&gt;HTH.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LOGFILE&gt;</description>
      <pubDate>Thu, 21 Oct 2004 06:02:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403767#M201363</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2004-10-21T06:02:21Z</dc:date>
    </item>
    <item>
      <title>Re: Search for a particular string using SED</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403768#M201364</link>
      <description>Hi Sridhar,&lt;BR /&gt;&lt;BR /&gt;Muthukumar's solution worked for me . &lt;BR /&gt;&lt;BR /&gt;awk '/CMD: \/opt\/omni\/lbin\/GetMetrics.pl/ {print $0;getline;print $0}' /var/adm/cron/log&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;But, when i try to run teh same command across servers by using remsh , awk is throwing this error&lt;BR /&gt;&lt;BR /&gt;syntax error The source line is 1.&lt;BR /&gt; The error context is&lt;BR /&gt;                 &amp;gt;&amp;gt;&amp;gt; /CMD: &amp;lt;&amp;lt;&amp;lt;&lt;BR /&gt; awk: Quitting&lt;BR /&gt; The source line is 1.&lt;BR /&gt;sh} /var/adm/cron/log&lt;BR /&gt;sh: getline:  not found.&lt;BR /&gt;&lt;BR /&gt;To be honest I have no much knowledge of awk :-)&lt;BR /&gt;&lt;BR /&gt;Any advice.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Raja.B&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 21 Oct 2004 12:15:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403768#M201364</guid>
      <dc:creator>Raja Balasubramanian</dc:creator>
      <dc:date>2004-10-21T12:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: Search for a particular string using SED</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403769#M201365</link>
      <description>Hi Raja,&lt;BR /&gt;&lt;BR /&gt;With 'remsh' it can get little trickier because shell will try to interfere before remsh actually passes the command. So, one way is to escape the escape charater. For ex.,&lt;BR /&gt;&lt;BR /&gt;remsh remote_host -n "awk '/CMD: \\/opt\\/omni\\/lbin\\/GetMetrics.pl/ {print $0;getline;print \$0}' /var/adm/cron/log"&lt;BR /&gt;&lt;BR /&gt;Or put the awk command in a oneline script and push the script using 'rcp' and then execute that script using 'remsh' in the next step.&lt;BR /&gt;&lt;BR /&gt;Muthukumar - I believe he is actually trying to get details for only selective cronjobs. With simple 'CMD' string, he will get all the jobs.&lt;BR /&gt;&lt;BR /&gt;-Sri&lt;BR /&gt;</description>
      <pubDate>Thu, 21 Oct 2004 12:27:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403769#M201365</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2004-10-21T12:27:20Z</dc:date>
    </item>
    <item>
      <title>Re: Search for a particular string using SED</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403770#M201366</link>
      <description>Hi Sridhar / Muthukumar,&lt;BR /&gt;&lt;BR /&gt;Thanks a lot for all your help.&lt;BR /&gt;&lt;BR /&gt;I could get the output that I was looking for.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Raja.B</description>
      <pubDate>Thu, 21 Oct 2004 14:50:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/search-for-a-particular-string-using-sed/m-p/3403770#M201366</guid>
      <dc:creator>Raja Balasubramanian</dc:creator>
      <dc:date>2004-10-21T14:50:52Z</dc:date>
    </item>
  </channel>
</rss>

