<?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: Text Manipulation . in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923036#M408322</link>
    <description>Hi Veri,&lt;BR /&gt;&lt;BR /&gt;Thanks for turning into a user who has given more points than the responses. ;)&lt;BR /&gt;&lt;BR /&gt;It is changed as,&lt;BR /&gt;&lt;BR /&gt;======================================&lt;BR /&gt;&lt;BR /&gt; I have assigned points to   216  of   213  responses to  my questions.&lt;BR /&gt;&lt;BR /&gt;======================================&lt;BR /&gt;&lt;BR /&gt;:) Don't know. It is being a problem to some of the users. Post it in the ITRC Forums Issues.&lt;BR /&gt;&lt;BR /&gt;hth.</description>
    <pubDate>Fri, 02 Sep 2005 03:48:46 GMT</pubDate>
    <dc:creator>Muthukumar_5</dc:creator>
    <dc:date>2005-09-02T03:48:46Z</dc:date>
    <item>
      <title>Text Manipulation .</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923021#M408307</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;I have a file : team1.txt&lt;BR /&gt;with the following details,&lt;BR /&gt;&lt;BR /&gt;$ cat team1.txt&lt;BR /&gt;&lt;BR /&gt;John&lt;BR /&gt;Christian&lt;BR /&gt;Veri&lt;BR /&gt;Ronald&lt;BR /&gt;------------&lt;BR /&gt;&lt;BR /&gt;I want this to be show in this way ,&lt;BR /&gt;$ cat team1.txt&lt;BR /&gt;John Christian Veri Ronald&lt;BR /&gt;&lt;BR /&gt;How can I do that , with the help of shell script.&lt;BR /&gt;&lt;BR /&gt;Many Thanks ,&lt;BR /&gt;Veri.&lt;BR /&gt;</description>
      <pubDate>Fri, 02 Sep 2005 01:16:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923021#M408307</guid>
      <dc:creator>rveri</dc:creator>
      <dc:date>2005-09-02T01:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: Text Manipulation .</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923022#M408308</link>
      <description>awk '{ printf $0" "; } END { print; }' team1.txt&lt;BR /&gt;&lt;BR /&gt;hth.</description>
      <pubDate>Fri, 02 Sep 2005 01:21:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923022#M408308</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-09-02T01:21:51Z</dc:date>
    </item>
    <item>
      <title>Re: Text Manipulation .</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923023#M408309</link>
      <description>Another way as,&lt;BR /&gt;&lt;BR /&gt;# paste -s -d" " team1.txt&lt;BR /&gt;&lt;BR /&gt;hth.</description>
      <pubDate>Fri, 02 Sep 2005 01:28:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923023#M408309</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-09-02T01:28:53Z</dc:date>
    </item>
    <item>
      <title>Re: Text Manipulation .</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923024#M408310</link>
      <description>To update into the same file then,&lt;BR /&gt;&lt;BR /&gt;# perl -pe 's/\n/ /' team1.txt | perl -pe 's/$/\n/' &amp;gt; team1.txt&lt;BR /&gt;&lt;BR /&gt;hth.</description>
      <pubDate>Fri, 02 Sep 2005 02:00:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923024#M408310</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-09-02T02:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: Text Manipulation .</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923025#M408311</link>
      <description>Hi , &lt;BR /&gt;You can use the tr command also to do that.&lt;BR /&gt;&lt;BR /&gt;Raj.</description>
      <pubDate>Fri, 02 Sep 2005 02:17:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923025#M408311</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2005-09-02T02:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: Text Manipulation .</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923026#M408312</link>
      <description>Hi Muthukumar,&lt;BR /&gt;The first post with awk command does not work . and giving same output.&lt;BR /&gt;Do you know how to get it thru awk also.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 02 Sep 2005 02:21:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923026#M408312</guid>
      <dc:creator>rveri</dc:creator>
      <dc:date>2005-09-02T02:21:44Z</dc:date>
    </item>
    <item>
      <title>Re: Text Manipulation .</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923027#M408313</link>
      <description>Hi Veri ,&lt;BR /&gt;&lt;BR /&gt;You can do this using the following tr command:&lt;BR /&gt;&lt;BR /&gt;$  tr -s '/\n' '/ /' &amp;lt; team1.txt &lt;BR /&gt;&lt;BR /&gt;Cheers ,&lt;BR /&gt;Raj.</description>
      <pubDate>Fri, 02 Sep 2005 02:38:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923027#M408313</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2005-09-02T02:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: Text Manipulation .</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923028#M408314</link>
      <description>Why not use a shell script to do this?&lt;BR /&gt;eg. &lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;for x in $(cat team1.txt)&lt;BR /&gt;do&lt;BR /&gt;   print "$x \c"&lt;BR /&gt;done&lt;BR /&gt;print&lt;BR /&gt;#end</description>
      <pubDate>Fri, 02 Sep 2005 02:42:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923028#M408314</guid>
      <dc:creator>sparky_2</dc:creator>
      <dc:date>2005-09-02T02:42:36Z</dc:date>
    </item>
    <item>
      <title>Re: Text Manipulation .</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923029#M408315</link>
      <description>PS. Tried it out and Muthukumar's awk command does work -&lt;BR /&gt;awk '{printf $0" ";}END {print}' team1.txt</description>
      <pubDate>Fri, 02 Sep 2005 02:46:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923029#M408315</guid>
      <dc:creator>sparky_2</dc:creator>
      <dc:date>2005-09-02T02:46:14Z</dc:date>
    </item>
    <item>
      <title>Re: Text Manipulation .</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923030#M408316</link>
      <description>Hi Sparky ,&lt;BR /&gt;&lt;BR /&gt;i) Your command rather shell script , works fine , But I dont understand why 2 print given in the script.&lt;BR /&gt;&lt;BR /&gt;ii) Muthukumars perl script works great.&lt;BR /&gt;&lt;BR /&gt;ii) also now Muthukumars awk command also now works fine , after putting printf .&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 02 Sep 2005 02:56:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923030#M408316</guid>
      <dc:creator>rveri</dc:creator>
      <dc:date>2005-09-02T02:56:58Z</dc:date>
    </item>
    <item>
      <title>Re: Text Manipulation .</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923031#M408317</link>
      <description>If you want to update in to the same file then,&lt;BR /&gt;&lt;BR /&gt;awk '{printf $0" ";}END {print}' team1.txt &amp;gt; temp.txt&lt;BR /&gt;mv temp.txt team1.txt&lt;BR /&gt;&lt;BR /&gt;AND,&lt;BR /&gt;&lt;BR /&gt;Your profile says as,&lt;BR /&gt;&lt;BR /&gt; I have assigned points to   126  of   211  responses to  my questions.&lt;BR /&gt;&lt;BR /&gt;Try to change to 211 of 211 responses by assigning points ;) It will give more responses and help.&lt;BR /&gt;&lt;BR /&gt;hth.</description>
      <pubDate>Fri, 02 Sep 2005 02:58:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923031#M408317</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-09-02T02:58:16Z</dc:date>
    </item>
    <item>
      <title>Re: Text Manipulation .</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923032#M408318</link>
      <description>what about this one,&lt;BR /&gt;&lt;BR /&gt;$ tr -s '/\n' '/ /' &amp;lt; team1.txt &amp;gt; team2.txt&lt;BR /&gt;$ mv team2.txt team1.txt&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Raj.</description>
      <pubDate>Fri, 02 Sep 2005 03:10:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923032#M408318</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2005-09-02T03:10:09Z</dc:date>
    </item>
    <item>
      <title>Re: Text Manipulation .</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923033#M408319</link>
      <description>Thanks Muthukumar , Sparky and Raj,&lt;BR /&gt;&lt;BR /&gt;All above works ,&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;BR /&gt;</description>
      <pubDate>Fri, 02 Sep 2005 03:16:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923033#M408319</guid>
      <dc:creator>rveri</dc:creator>
      <dc:date>2005-09-02T03:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: Text Manipulation .</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923034#M408320</link>
      <description>Thanks all,&lt;BR /&gt;&lt;BR /&gt;Muthukumar , "Try to change to 211 of 211 responses by assigning points "&lt;BR /&gt;&lt;BR /&gt;Can you have a look now ..&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks all &amp;amp; who replied. Got solution.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 02 Sep 2005 03:46:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923034#M408320</guid>
      <dc:creator>rveri</dc:creator>
      <dc:date>2005-09-02T03:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: Text Manipulation .</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923035#M408321</link>
      <description>Got solution. Many Thanks to all.</description>
      <pubDate>Fri, 02 Sep 2005 03:47:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923035#M408321</guid>
      <dc:creator>rveri</dc:creator>
      <dc:date>2005-09-02T03:47:43Z</dc:date>
    </item>
    <item>
      <title>Re: Text Manipulation .</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923036#M408322</link>
      <description>Hi Veri,&lt;BR /&gt;&lt;BR /&gt;Thanks for turning into a user who has given more points than the responses. ;)&lt;BR /&gt;&lt;BR /&gt;It is changed as,&lt;BR /&gt;&lt;BR /&gt;======================================&lt;BR /&gt;&lt;BR /&gt; I have assigned points to   216  of   213  responses to  my questions.&lt;BR /&gt;&lt;BR /&gt;======================================&lt;BR /&gt;&lt;BR /&gt;:) Don't know. It is being a problem to some of the users. Post it in the ITRC Forums Issues.&lt;BR /&gt;&lt;BR /&gt;hth.</description>
      <pubDate>Fri, 02 Sep 2005 03:48:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923036#M408322</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-09-02T03:48:46Z</dc:date>
    </item>
    <item>
      <title>Re: Text Manipulation .</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923037#M408323</link>
      <description>Thank you.&lt;BR /&gt;------------</description>
      <pubDate>Fri, 02 Sep 2005 03:51:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/text-manipulation/m-p/4923037#M408323</guid>
      <dc:creator>rveri</dc:creator>
      <dc:date>2005-09-02T03:51:43Z</dc:date>
    </item>
  </channel>
</rss>

