<?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 Join two Files in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/join-two-files/m-p/4646978#M41118</link>
    <description>Hi&lt;BR /&gt;&lt;BR /&gt;I have 2 file&lt;BR /&gt;&lt;BR /&gt;cat f1&lt;BR /&gt;1&lt;BR /&gt;2&lt;BR /&gt;3&lt;BR /&gt;&lt;BR /&gt;cat f2&lt;BR /&gt;sun&lt;BR /&gt;mon&lt;BR /&gt;tue&lt;BR /&gt;wen&lt;BR /&gt;&lt;BR /&gt;i want the out put as third file f3 with no tab in between "1" "sun"&lt;BR /&gt;#cat f3&lt;BR /&gt;1 sun&lt;BR /&gt;2 mon&lt;BR /&gt;3 tue&lt;BR /&gt;&lt;BR /&gt;I used paste command as given below&lt;BR /&gt;#/usr/bin/paste -d\\ f1 f2 &amp;gt; /home/f3&lt;BR /&gt;&lt;BR /&gt;Iam getting the req output, &lt;BR /&gt;&lt;BR /&gt;#/usr/bin/paste -d\\ /home/f1 /home/f2 &amp;gt; /home/f3&lt;BR /&gt;&lt;BR /&gt;but wen i used above command(the path of the file included), iam getting error. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Will anyone help me to solve this problem by using the path or any other command for joining two file without tab&lt;BR /&gt;</description>
    <pubDate>Mon, 14 Jun 2010 06:11:47 GMT</pubDate>
    <dc:creator>Renjus</dc:creator>
    <dc:date>2010-06-14T06:11:47Z</dc:date>
    <item>
      <title>Join two Files</title>
      <link>https://community.hpe.com/t5/operating-system-linux/join-two-files/m-p/4646978#M41118</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;I have 2 file&lt;BR /&gt;&lt;BR /&gt;cat f1&lt;BR /&gt;1&lt;BR /&gt;2&lt;BR /&gt;3&lt;BR /&gt;&lt;BR /&gt;cat f2&lt;BR /&gt;sun&lt;BR /&gt;mon&lt;BR /&gt;tue&lt;BR /&gt;wen&lt;BR /&gt;&lt;BR /&gt;i want the out put as third file f3 with no tab in between "1" "sun"&lt;BR /&gt;#cat f3&lt;BR /&gt;1 sun&lt;BR /&gt;2 mon&lt;BR /&gt;3 tue&lt;BR /&gt;&lt;BR /&gt;I used paste command as given below&lt;BR /&gt;#/usr/bin/paste -d\\ f1 f2 &amp;gt; /home/f3&lt;BR /&gt;&lt;BR /&gt;Iam getting the req output, &lt;BR /&gt;&lt;BR /&gt;#/usr/bin/paste -d\\ /home/f1 /home/f2 &amp;gt; /home/f3&lt;BR /&gt;&lt;BR /&gt;but wen i used above command(the path of the file included), iam getting error. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Will anyone help me to solve this problem by using the path or any other command for joining two file without tab&lt;BR /&gt;</description>
      <pubDate>Mon, 14 Jun 2010 06:11:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/join-two-files/m-p/4646978#M41118</guid>
      <dc:creator>Renjus</dc:creator>
      <dc:date>2010-06-14T06:11:47Z</dc:date>
    </item>
    <item>
      <title>Re: Join two Files</title>
      <link>https://community.hpe.com/t5/operating-system-linux/join-two-files/m-p/4646979#M41119</link>
      <description>With a space instead of TAB:&lt;BR /&gt;paste -d " " f1 f2&lt;BR /&gt;&lt;BR /&gt;With no character at all:&lt;BR /&gt;paste -d "" f1 f2&lt;BR /&gt;&lt;BR /&gt;MK</description>
      <pubDate>Mon, 14 Jun 2010 06:53:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/join-two-files/m-p/4646979#M41119</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2010-06-14T06:53:00Z</dc:date>
    </item>
    <item>
      <title>Re: Join two Files</title>
      <link>https://community.hpe.com/t5/operating-system-linux/join-two-files/m-p/4646980#M41120</link>
      <description>Dear Friend is that possible With out space,&lt;BR /&gt;is any command for that?</description>
      <pubDate>Mon, 14 Jun 2010 07:39:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/join-two-files/m-p/4646980#M41120</guid>
      <dc:creator>Renjus</dc:creator>
      <dc:date>2010-06-14T07:39:31Z</dc:date>
    </item>
    <item>
      <title>Re: Join two Files</title>
      <link>https://community.hpe.com/t5/operating-system-linux/join-two-files/m-p/4646981#M41121</link>
      <description>you're escaping the escape character "\"&lt;BR /&gt;&lt;BR /&gt;try use only one "\" following by a space.&lt;BR /&gt;#/usr/bin/paste -d\ /home/f1 /home/f2 &amp;gt; /home/f3&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I personally would use -d " " instead.</description>
      <pubDate>Mon, 14 Jun 2010 22:08:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/join-two-files/m-p/4646981#M41121</guid>
      <dc:creator>Wilfred Chau_1</dc:creator>
      <dc:date>2010-06-14T22:08:59Z</dc:date>
    </item>
    <item>
      <title>Re: Join two Files</title>
      <link>https://community.hpe.com/t5/operating-system-linux/join-two-files/m-p/4646982#M41122</link>
      <description>Tinu,&lt;BR /&gt;&lt;BR /&gt;&amp;gt;..is that possible With out space,&lt;BR /&gt;is any command for that:&lt;BR /&gt;&lt;BR /&gt;- Yes , check this out: this is without inserting a space&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;# paste f1 f2 | awk '{print $1,$2}' &amp;gt; f3&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have fun!,&lt;BR /&gt;Raj. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 15 Jun 2010 03:05:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/join-two-files/m-p/4646982#M41122</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2010-06-15T03:05:49Z</dc:date>
    </item>
  </channel>
</rss>

