<?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 Tab stop conversion in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/tab-stop-conversion/m-p/2983605#M922795</link>
    <description>How do I convert tabs in a unix file to pipes?&lt;BR /&gt;Thanks in advance.&lt;BR /&gt;Cathy</description>
    <pubDate>Wed, 28 May 2003 15:32:57 GMT</pubDate>
    <dc:creator>cbres00</dc:creator>
    <dc:date>2003-05-28T15:32:57Z</dc:date>
    <item>
      <title>Tab stop conversion</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tab-stop-conversion/m-p/2983605#M922795</link>
      <description>How do I convert tabs in a unix file to pipes?&lt;BR /&gt;Thanks in advance.&lt;BR /&gt;Cathy</description>
      <pubDate>Wed, 28 May 2003 15:32:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tab-stop-conversion/m-p/2983605#M922795</guid>
      <dc:creator>cbres00</dc:creator>
      <dc:date>2003-05-28T15:32:57Z</dc:date>
    </item>
    <item>
      <title>Re: Tab stop conversion</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tab-stop-conversion/m-p/2983606#M922796</link>
      <description>try the translate command called "tr"&lt;BR /&gt;&lt;BR /&gt;tr "\t" "|" &amp;lt; infile &amp;gt; outfile&lt;BR /&gt;&lt;BR /&gt;should solve your problem</description>
      <pubDate>Wed, 28 May 2003 15:35:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tab-stop-conversion/m-p/2983606#M922796</guid>
      <dc:creator>Paddy_1</dc:creator>
      <dc:date>2003-05-28T15:35:56Z</dc:date>
    </item>
    <item>
      <title>Re: Tab stop conversion</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tab-stop-conversion/m-p/2983607#M922797</link>
      <description>Hi Cathy:&lt;BR /&gt;&lt;BR /&gt;# sed sed 's/&lt;TAB&gt;/|/'g filename &amp;gt; filename.new&lt;BR /&gt;&lt;BR /&gt;Note that instead of &lt;TAB&gt; you should actually press the TAB key.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;/TAB&gt;&lt;/TAB&gt;</description>
      <pubDate>Wed, 28 May 2003 15:38:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tab-stop-conversion/m-p/2983607#M922797</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2003-05-28T15:38:10Z</dc:date>
    </item>
    <item>
      <title>Re: Tab stop conversion</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tab-stop-conversion/m-p/2983608#M922798</link>
      <description>Do I need an option?  I get &lt;BR /&gt;"usage tr [ -cds ] ...."&lt;BR /&gt;message.&lt;BR /&gt;</description>
      <pubDate>Wed, 28 May 2003 15:39:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tab-stop-conversion/m-p/2983608#M922798</guid>
      <dc:creator>cbres00</dc:creator>
      <dc:date>2003-05-28T15:39:01Z</dc:date>
    </item>
    <item>
      <title>Re: Tab stop conversion</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tab-stop-conversion/m-p/2983609#M922799</link>
      <description>James' solution worked.&lt;BR /&gt;I didn't know I could use the tab key in a sed command. I thought I had to have an ascii character to translate.  Very cool!&lt;BR /&gt;Thanks to all.&lt;BR /&gt;Cathy</description>
      <pubDate>Wed, 28 May 2003 15:44:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tab-stop-conversion/m-p/2983609#M922799</guid>
      <dc:creator>cbres00</dc:creator>
      <dc:date>2003-05-28T15:44:01Z</dc:date>
    </item>
    <item>
      <title>Re: Tab stop conversion</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tab-stop-conversion/m-p/2983610#M922800</link>
      <description>I have a different take on the tr command:&lt;BR /&gt;cat $INFILE|tr "\t" "|"&amp;gt;&amp;gt;$OUTFILE&lt;BR /&gt;&lt;BR /&gt;You could also use sed instead.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Chris</description>
      <pubDate>Wed, 28 May 2003 15:44:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tab-stop-conversion/m-p/2983610#M922800</guid>
      <dc:creator>Chris Vail</dc:creator>
      <dc:date>2003-05-28T15:44:35Z</dc:date>
    </item>
    <item>
      <title>Re: Tab stop conversion</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tab-stop-conversion/m-p/2983611#M922801</link>
      <description>Hi (again) Cathy:&lt;BR /&gt;&lt;BR /&gt;I might add that some 'sed' versions, like the GNU one (but not the HP-UX version) support '\t' to denote the TAB character.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Wed, 28 May 2003 15:55:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tab-stop-conversion/m-p/2983611#M922801</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2003-05-28T15:55:38Z</dc:date>
    </item>
  </channel>
</rss>

